main
tsx 18 lines 377 Bytes
Raw
1 import 'react'
2 import './icon.css'
3 import src from '../../../public/img/icon-delete.svg'
4 import { Icon } from './icon.js'
5 import type { IconProps } from './index.js'
6 import type { JSX } from 'react'
7
8 export function DeleteIcon (props: IconProps): JSX.Element {
9 return (
10 <>
11 <Icon
12 {...props}
13 src={src}
14 name='DeleteIcon'
15 />
16 </>
17 )
18 }