import React from 'react'; type MediaIconProps = { width?: number; height?: number; color?: string; }; export const MediaIcon = ({ width = 20, height = 20, color = '#fff', }: MediaIconProps) => ( );