/** * Timer Icon * @category data */ import type { IconDefinition } from '../../types'; export const timer: IconDefinition = { name: 'timer', category: 'data', description: 'Timer countdown with stopwatch', tags: ['timer', 'countdown', 'stopwatch', 'time', 'duration'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default timer;