UNPKG

prp-ui-components

Version:

Package for use components of Pratica Plataforms

10 lines (9 loc) 258 B
import * as React from 'react'; import './styles.scss'; interface AlertIconProps { width: string; height: string; fill?: string; } declare const AlertIcon: ({ fill, width, height }: AlertIconProps) => React.JSX.Element; export default AlertIcon;