mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-16 09:38:49 +00:00
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
|
|
import { cn } from '@/lib/utils';
|
||
|
|
|
||
|
|
type IconFontType = {
|
||
|
|
name: string;
|
||
|
|
className?: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const IconFont = ({ name, className }: IconFontType) => (
|
||
|
|
<svg className={cn('fill-current size-4', className)}>
|
||
|
|
<use xlinkHref={`#icon-${name}`} />
|
||
|
|
</svg>
|
||
|
|
);
|