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

9 lines
200 B
TypeScript

import { Icon, IconProps } from './Icon'
export const Panel = (props: IconProps) => (
<Icon {...props}>
<rect x="3" y="3" width="18" height="18" rx="2" />
<path d="M3 15h18" />
</Icon>
)