@trail-ui/react
Version:
10 lines (7 loc) • 339 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
interface AlertIconProps extends Omit<React.HTMLAttributes<SVGSVGElement>, 'color'> {
type?: 'info' | 'green' | 'yellow' | 'error';
filled?: boolean;
}
declare const AlertIcon: (props: AlertIconProps) => react_jsx_runtime.JSX.Element;
export { AlertIcon, AlertIconProps };