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