design-react-kit
Version:
Componenti React per Bootstrap 5
8 lines • 595 B
JavaScript
import * as React from 'react';
export const component = ({ title, titleId, ...props }) => {
return (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 24 24', xmlSpace: 'preserve', enableBackground: 'new 0 0 24 24', "aria-labelledby": titleId, ...props },
title ? React.createElement("title", { id: titleId }, title) : null,
React.createElement("path", { d: 'M21 20v1H3V3h1v17z' }),
React.createElement("path", { d: 'm10.5 9.2 2.5 2.5 6-6v3.8h1V4h-5.5v1h3.8L13 10.3l-2.5-2.5-4.3 4.3.6.8z' })));
};
//# sourceMappingURL=ItChartLine.js.map