Files
metabuilder/fakemui/icons/Settings.tsx

10 lines
605 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Settings = (props: IconProps) => (
<Icon {...props}>
<circle cx="128" cy="128" r="48" />
<path d="M197.4 80.7a73.6 73.6 0 0 1 6.3 10.9L229.6 106a102.9 102.9 0 0 1 0 44l-26 14.4a73.6 73.6 0 0 1-6.3 10.9l.5 29.7a104 104 0 0 1-38.1 22.1l-23.1-19.8a73.6 73.6 0 0 1-12.6 0L100.8 227a104 104 0 0 1-38.1-22.1l.5-29.7a73.6 73.6 0 0 1-6.3-10.9L26.4 150a102.9 102.9 0 0 1 0-44l26-14.4a73.6 73.6 0 0 1 6.3-10.9l-.5-29.7A104 104 0 0 1 96.3 29l23.1 19.8a73.6 73.6 0 0 1 12.6 0L155.2 29a104 104 0 0 1 38.1 22.1Z" />
</Icon>
)