import React from 'react'; import { Star as StarIcon } from 'phosphor-react-native'; import { colors } from '../../theme/theme'; type IconProps = { size: number; color: string; }; const Star = ({ type, size, color, }: IconProps & { type: 'full' | 'empty' }) => { if (type === 'full') { return ; } return ; }; export default Star;