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