Files
metabuilder/fakemui/icons/FileCode.tsx

12 lines
382 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const FileCode = (props: IconProps) => (
<Icon {...props}>
<path d="M200 224H56a8 8 0 0 1-8-8V40a8 8 0 0 1 8-8h96l56 56v128a8 8 0 0 1-8 8Z" />
<polyline points="152 32 152 88 208 88" />
<polyline points="104 144 80 168 104 192" />
<polyline points="152 144 176 168 152 192" />
</Icon>
)