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