mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import { Icon, IconProps } from './Icon'
|
|
|
|
export const TextFields = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M212,56a8,8,0,0,1-8,8H136V192h28a8,8,0,0,1,0,16H92a8,8,0,0,1,0-16h28V64H52a8,8,0,0,1,0-16H204A8,8,0,0,1,212,56Z" />
|
|
</Icon>
|
|
)
|