import * as React from 'react'; import classNames from 'classnames'; import { Property } from 'csstype'; import { View } from '../View'; import { StyleToken } from '../types/style'; interface RatingMixedIconProps { emptyColor?: StyleToken; emptyIcon: JSX.Element; fillColor?: StyleToken; fillIcon: JSX.Element; value: number; } export const RatingMixedIcon: React.FC = ({ emptyColor, emptyIcon, fillColor, fillIcon, value, }) => { const widthPercentage = `${(value % 1) * 100}%`; return ( ); }; RatingMixedIcon.displayName = 'RatingMixedIcon';