balibabu
feat: modify DuckDuckGo's style #918 (#1485)
b25a0c6
raw
history blame
444 Bytes
import React from 'react';
import { Operator, operatorIconMap } from '../constant';
import styles from './index.less';
interface IProps {
name: Operator;
fontSize?: number;
width?: number;
}
const OperatorIcon = ({ name, fontSize, width }: IProps) => {
const Icon = operatorIconMap[name] || React.Fragment;
return (
<Icon className={styles.icon} style={{ fontSize }} width={width}></Icon>
);
};
export default OperatorIcon;