mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
13 lines
396 B
TypeScript
13 lines
396 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Article = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<rect x="40" y="32" width="176" height="192" rx="8" />
|
|
<line x1="72" y1="72" x2="184" y2="72" />
|
|
<line x1="72" y1="104" x2="184" y2="104" />
|
|
<line x1="72" y1="136" x2="184" y2="136" />
|
|
<line x1="72" y1="168" x2="144" y2="168" />
|
|
</Icon>
|
|
)
|