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