import * as React from 'react'; export interface SoundWave64Props extends React.SVGProps { ariaLabel?: string } export default function SoundWave64({ ariaLabel, ...props }: SoundWave64Props) { return ( ); }