Files
metabuilder/fakemui/icons/Pencil.tsx

11 lines
418 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Pencil = (props: IconProps) => (
<Icon {...props}>
<path d="M92.69 216H48a8 8 0 0 1-8-8v-44.69a8 8 0 0 1 2.34-5.65L165.66 34.34a8 8 0 0 1 11.31 0L221.66 79a8 8 0 0 1 0 11.31L98.34 213.66a8 8 0 0 1-5.65 2.34Z" />
<line x1="136" y1="64" x2="192" y2="120" />
<line x1="95.49" y1="215.49" x2="40.51" y2="160.51" />
</Icon>
)