mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Sidebar = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="3" y="3" width="18" height="18" rx="2" />
|
|
<path d="M9 3v18" />
|
|
</Icon>
|
|
)
|