/** * Line Chart Icon * @category data */ import type { IconDefinition } from '../../types'; export const chartLine: IconDefinition = { name: 'chart-line', category: 'data', description: 'Line chart with trend line', tags: ['chart', 'graph', 'line', 'trend', 'analytics', 'data'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default chartLine;