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