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