import React from 'react'; import { Icon } from '../icon.component.js'; import { type IconProps } from '../icon.types.js'; export function WatchIcon({ look = 'filled', 'aria-label': ariaLabel = 'Watch', copyrightYear = '2025', ...props }: IconProps) { return ( {look === 'filled' ? ( ) : ( )} ); }