/** * Table Icon * @category data */ import type { IconDefinition } from '../../types'; export const table: IconDefinition = { name: 'table', category: 'data', description: 'Data table with grid layout', tags: ['table', 'grid', 'data', 'spreadsheet', 'rows', 'columns'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default table;