import * as React from "react"; import classNames from "classnames"; interface Props extends React.HTMLAttributes { id: string, className?: string, fixedWidth?: boolean, children?: never, } export const Icon: React.FC = ({ id, className, fixedWidth, ...other }) => ( );