import React from 'react'; type Props = { size: number | string; color: string; }; const Question = ({ size, color }: Props) => { return ( ); }; export default Question;