import { CSSProperties, FC } from 'react' import styles from './index.module.scss' import classNames from 'classnames' interface Props { className?: string value?: string style?: CSSProperties } export const Icon: FC = (props) => { return } Icon.defaultProps = { value: 'star', }