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