import React from 'react' import type { IconProps } from './types' export const ChartLine: React.FC = ({ size = 24, color = 'currentColor', weight = 'regular', className = '', ...props }) => { const strokeWidths = { thin: 1, light: 1.5, regular: 2, bold: 2.5, } return ( ) }