2023-04-30 22:51:00 +00:00
|
|
|
import classNames from 'classnames';
|
|
|
|
|
2023-05-10 10:59:29 +00:00
|
|
|
interface Props extends React.HTMLAttributes<HTMLImageElement> {
|
2023-04-30 22:51:00 +00:00
|
|
|
id: string;
|
|
|
|
className?: string;
|
|
|
|
fixedWidth?: boolean;
|
|
|
|
children?: never;
|
2023-05-10 10:59:29 +00:00
|
|
|
}
|
|
|
|
|
2023-05-09 21:41:18 +00:00
|
|
|
export const Icon: React.FC<Props> = ({
|
|
|
|
id,
|
|
|
|
className,
|
|
|
|
fixedWidth,
|
|
|
|
...other
|
|
|
|
}) => (
|
|
|
|
<i
|
|
|
|
className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })}
|
|
|
|
{...other}
|
|
|
|
/>
|
|
|
|
);
|