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