Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / atoms / Icons / RadioIcon / RadioIcon.d.ts
Size: Mime:
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
    isSelected?: boolean;
}
export declare const StyledCircleFillPath: import("styleh-components/dist/styles/styled-components/typings").StyledComponentClass<React.SVGProps<SVGPathElement>, any, React.SVGProps<SVGPathElement>>;
declare class RadioIcon extends React.PureComponent<Props> {
    static defaultProps: {
        width: string;
        height: string;
        viewBox: string;
        stroke: string;
        isSelected: boolean;
    };
    render(): JSX.Element;
}
export { RadioIcon };
export default RadioIcon;