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