/** * Clock Icon * @category data */ import type { IconDefinition } from '../../types'; export const clock: IconDefinition = { name: 'clock', category: 'data', description: 'Clock showing time', tags: ['clock', 'time', 'hours', 'minutes', 'schedule'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default clock;