mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-06 11:39:36 +00:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Tabs = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="3" y="3" width="18" height="18" rx="2" />
|
|
<path d="M3 9h18" />
|
|
<path d="M9 3v6" />
|
|
<path d="M15 3v6" />
|
|
</Icon>
|
|
)
|