mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
283 B
TypeScript
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>
|
|
)
|