Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Icons
/
TrashIcon
/
TrashIcon.d.ts
|
---|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
}
declare class TrashIcon extends React.PureComponent<Props> {
static defaultProps: {
width: string;
height: string;
viewBox: string;
fill: string;
stroke: string;
strokeWidth: string;
};
render(): JSX.Element;
}
export { TrashIcon };
export default TrashIcon;