0
0
Fork 0

Rewrite Icon and IconWithBadge with typescript (#24747)

This commit is contained in:
fusagiko / takayamaki 2023-05-01 07:51:00 +09:00 committed by GitHub
parent c53fe9b753
commit 81f75b1e0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 43 deletions

View file

@ -0,0 +1,14 @@
import React from 'react';
import classNames from 'classnames';
type Props = {
id: string;
className?: string;
fixedWidth?: boolean;
children?: never;
[key: string]: any;
}
export const Icon: React.FC<Props> = ({ id, className, fixedWidth, ...other }) =>
<i className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} />;
export default Icon;