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