IconDatabaseChanges.tsx36 lines · main
| 1 | // DO NOT EDIT |
| 2 | // @ts-ignore |
| 3 | import IconBase from './../../IconBase' |
| 4 | |
| 5 | const SvgComponent = () => ( |
| 6 | <svg xmlns="http://www.w3.org/2000/svg" width={25} height={24} fill="none"> |
| 7 | <path |
| 8 | stroke="currentColor" |
| 9 | strokeLinecap="round" |
| 10 | strokeLinejoin="bevel" |
| 11 | strokeMiterlimit={10} |
| 12 | d="M20.307 12a7.807 7.807 0 0 1-7.807 7.808M4.693 12A7.807 7.807 0 0 1 12.5 4.193" |
| 13 | opacity={0.45} |
| 14 | /> |
| 15 | <circle |
| 16 | cx={17.512} |
| 17 | cy={6.971} |
| 18 | r={3.723} |
| 19 | stroke="currentColor" |
| 20 | strokeLinejoin="bevel" |
| 21 | strokeMiterlimit={10} |
| 22 | /> |
| 23 | <path |
| 24 | stroke="currentColor" |
| 25 | strokeLinejoin="bevel" |
| 26 | strokeMiterlimit={10} |
| 27 | d="m10.11 13.287 2.137 3.703-2.138 3.703H5.833L3.695 16.99l2.138-3.703h4.276Z" |
| 28 | /> |
| 29 | </svg> |
| 30 | ) |
| 31 | |
| 32 | function IconDatabaseChanges(props: any) { |
| 33 | return <IconBase src={<SvgComponent />} viewBox="0 0 25 24" {...props} /> |
| 34 | } |
| 35 | |
| 36 | export default IconDatabaseChanges |