Files
metabuilder/fakemui/icons/Cursor.tsx

10 lines
313 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Cursor = (props: IconProps) => (
<Icon {...props}>
<path d="M38.2 48.5l73.6 176.3a8 8 0 0 0 14.8-.2l24-64 64-24a8 8 0 0 0 .2-14.8L38.5 48.2a8 8 0 0 0-10.3 10.3Z" />
<line x1="136" y1="136" x2="208" y2="208" />
</Icon>
)