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

11 lines
283 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Broom = (props: IconProps) => (
<Icon {...props}>
<path d="M40 216h40l24-56" />
<path d="M64 200l64-96 40 40-56 80" />
<path d="M128 104l20-20a56 56 0 0 1 79.2 79.2l-20 20" />
</Icon>
)