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