mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Columns = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="40" y="40" width="48" height="176" rx="8" />
|
|
<rect x="104" y="40" width="48" height="176" rx="8" />
|
|
<rect x="168" y="40" width="48" height="176" rx="8" />
|
|
</Icon>
|
|
)
|
|
|
|
export default Columns
|