open-icon
Version:
Open Icon
8 lines (7 loc) • 667 B
JavaScript
// lib/icons/chart-line.ts
var IconChartLine = `<svg id="chart-line" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><path d="M13.5,13.5v41c0,2.21,1.79,4,4,4h41" style="fill: none; stroke-miterlimit: 10; stroke-width:var(--icon-stroke-width-m, calc(var(--icon-stroke-width, 5) * 1));"/><polyline points="22.5 49.5 36 36 40.5 40.5 58.5 22.5" style="fill: none; stroke: var(--icon-stroke-color-secondary, var(--icon-stroke-color, currentColor)); stroke-miterlimit: 10; stroke-width:var(--icon-stroke-width-m, calc(var(--icon-stroke-width, 5) * 1));"/></svg>`;
var chart_line_default = IconChartLine;
export {
IconChartLine,
chart_line_default as default
};