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