Repository URL to install this package:
|
Version:
4.0.61 ▾
|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
isSelected?: boolean;
isAnimated?: boolean;
selectfill?: string;
}
declare class SwitchIcon extends React.Component<Props> {
static defaultProps: {
width: string;
height: string;
viewBox: string;
fill: string;
selectfill: string;
stroke: string;
isSelected: boolean;
};
render(): JSX.Element;
}
export { SwitchIcon };
export default SwitchIcon;