mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
22 lines
420 B
TypeScript
22 lines
420 B
TypeScript
import * as React from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
interface Props extends React.HTMLAttributes<HTMLImageElement> {
|
|
id: string;
|
|
className?: string;
|
|
fixedWidth?: boolean;
|
|
children?: never;
|
|
}
|
|
|
|
export const Icon: React.FC<Props> = ({
|
|
id,
|
|
className,
|
|
fixedWidth,
|
|
...other
|
|
}) => (
|
|
<i
|
|
className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })}
|
|
{...other}
|
|
/>
|
|
);
|