mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const BarChart = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="48" y="144" width="40" height="80" />
|
|
<rect x="108" y="96" width="40" height="128" />
|
|
<rect x="168" y="48" width="40" height="176" />
|
|
</Icon>
|
|
)
|