Repository URL to install this package:
|
Version:
2.0.2 ▾
|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
bgColor?: string;
borderColor?: string;
tickColor?: string;
radius?: number;
isSelected?: boolean;
}
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;