import React from 'react'; type Props = { size: number | string; color: string; }; const User = ({ size, color }: Props) => { return ( ); }; User.defaultProps = { size: 16, color: '#000', }; export default User;