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