Files
metabuilder/icons/react/fakemui/InfoOutlined.tsx
2026-03-09 22:30:41 +00:00

8 lines
426 B
TypeScript

import { Icon, type IconProps } from './Icon'
export const InfoOutlined = (props: IconProps) => (
<Icon {...props}>
<path d="M128 24a104 104 0 1 0 104 104A104.11791 104.11791 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.09957 88.09957 0 0 1-88 88Zm-8-112a8 8 0 0 1 8-8 16 16 0 0 0 0-32 16.00006 16.00006 0 0 0-16 16 8 8 0 0 1-16 0 32 32 0 1 1 32 32 8 8 0 0 1-8-8Zm8 60v-16a8 8 0 0 1 16 0v16a8 8 0 0 1-16 0Z" />
</Icon>
)