/** * Calendar Icon * @category data */ import type { IconDefinition } from '../../types'; export const calendar: IconDefinition = { name: 'calendar', category: 'data', description: 'Calendar with date grid', tags: ['calendar', 'date', 'schedule', 'time', 'event'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default calendar;