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