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