/// import { IconProps } from './Icon'; interface Props extends IconProps { open: boolean; } export default function OpenCloseIcon({ open, ...iconProps }: Props): JSX.Element; export {};