mirror of
https://github.com/amithkoujalgi/ollama4j.git
synced 2025-11-09 04:50:42 +01:00
9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
// @site/src/components/Icon.js
|
|
import React from 'react';
|
|
import { Icon as IconifyIcon } from '@iconify/react';
|
|
|
|
const IIcon = ({ icon, color, width = '24', height = '24' }) => (
|
|
<IconifyIcon icon={icon} color={color} width={width} height={height} />
|
|
);
|
|
|
|
export default IIcon; |