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