Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Icons
/
CautionIcon
/
CautionIcon.d.ts
|
|---|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
type?: string;
}
declare class CautionIcon extends React.PureComponent<Props> {
static defaultProps: {
renderWrapper: (elements: any) => JSX.Element;
};
render(): any;
}
export { CautionIcon };
export default CautionIcon;