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