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

13 lines
341 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Rows = (props: IconProps) => (
<Icon {...props}>
<rect x="40" y="40" width="176" height="48" rx="8" />
<rect x="40" y="104" width="176" height="48" rx="8" />
<rect x="40" y="168" width="176" height="48" rx="8" />
</Icon>
)
export default Rows