mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
13 lines
341 B
TypeScript
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
|