src/assets/iconsSvgr/DetailsIconSvgr.js
import * as React from 'react';
import Svg, {Circle, G, Path} from 'react-native-svg';
/**
* SVGR component representing a round "see details" icon.
* @param {Object} props - Properties
*/
const DetailsIconSvgr = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" {...props}>
<Circle
cx={60}
cy={60}
r={60}
style={{
fill: '#cecccf',
}}
/>
<Path
style={{
fill: '#fbfcfb',
}}
d="m69.81 74.98.21.22-.22-.22h.01zM75.2 70.02c-.35.46-.73.91-1.13 1.35l-.33-.33 1.24-1.24.22.22ZM71.04 73.73l.01.01-1.24 1.24h-.01v-.01l1.24-1.24z"
/>
<Path
d="M75.2 70.02c-.35.46-.73.91-1.13 1.35l-.33-.33 1.24-1.24.22.22Z"
style={{
fill: '#fbfcfb',
}}
/>
<Path
d="m74.98 69.8-1.24 1.24.33.33c.4-.44.78-.89 1.13-1.35l-.22-.22Zm-3.94 3.93-1.24 1.24.22.23-.21-.22 1.24-1.24h-.01Z"
style={{
fill: '#fbfcfb',
}}
/>
<G
style={{
isolation: 'isolate',
opacity: 0.6,
}}>
<Path
d="M65.3 56.72c-8.89 8.89-23.31 8.89-32.2 0-2.35-2.35-4.06-5.1-5.17-8.02-.61 6.51 1.58 13.23 6.57 18.22 8.89 8.89 23.31 8.89 32.19 0 6.54-6.54 8.25-16.06 5.17-24.18-.47 5.1-2.66 10.07-6.57 13.98Z"
style={{
fill: '#fbfcfb',
}}
/>
</G>
<Path
style={{
fill: '#fbfcfb',
}}
d="m77.78 72.59-5.18 5.18 5.17-5.18h.01z"
/>
<Path
d="m101.05 88.82-.96-.96c-.33-.33-1.1-.05-2.13.61L80.43 70.94l-2.15 2.15-1.65-1.65-1.42-1.42c9.84-12.4 9.02-30.48-2.44-41.95-12.35-12.35-32.36-12.35-44.7 0-12.35 12.34-12.34 32.35 0 44.69 11.48 11.48 29.54 12.29 41.95 2.44l-.22-.22 1.24-1.25h.01l-1.24 1.25.21.22 3.08 3.08-2.15 2.13 17.53 17.53c-.66 1.03-.93 1.82-.61 2.15l.95.96c.73.73 3.78-1.54 6.67-4.34.1-.1.21-.19.3-.29.22-.21.42-.41.63-.63.1-.1.19-.21.29-.3 2.8-2.89 5.06-5.93 4.33-6.66Zm-32-19.78c-10.29 10.29-26.97 10.29-37.25 0-10.29-10.29-10.29-26.95 0-37.24 10.29-10.29 26.97-10.29 37.25 0 10.27 10.27 10.27 26.95 0 37.24Zm5.93.76.22.22c-.35.46-.73.91-1.13 1.35l-.33-.33 1.24-1.24Z"
style={{
fill: '#fbfcfb',
}}
/>
</Svg>
);
export default DetailsIconSvgr;