import React from 'react'; export default function PlayOverlapIcon({ size = 24, color = 'currentColor', }: { size?: number; color?: string; }) { return ( {/* Filled play arrow */} {/* Outlined play arrow (underneath and to the right) */} ); }