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