mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
10 lines
334 B
TypeScript
10 lines
334 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const PencilSimple = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M92.7 216H48v-44.7a8 8 0 0 1 2.3-5.6l120-120a8 8 0 0 1 11.4 0l33.9 33.9a8 8 0 0 1 0 11.4l-120 120a8 8 0 0 1-5.6 2.3Z" />
|
|
<line x1="136" y1="64" x2="192" y2="120" />
|
|
</Icon>
|
|
)
|