Draw Line
Usage
With Web Components
html
<ss-icon icon="draw-line"></ss-icon>With icon tag
html
<i class="ss ss-draw-line"></i>With custom stroke width / thickness
html
<ss-icon icon="draw-line" thickness="1.2"></ss-icon>Node.js
javascript
const icons = require('@bookklik/senangstart-icons/icons');
const svg = icons['draw-line'];
console.log(svg);Icon Details
| Property | Value |
|---|---|
| Name | Draw Line |
| Slug | draw-line |
| Tags | edit, write, draw, line, stroke, diagonal, draw-line |
SVG Path
M3 21 21 3Raw SVG
html
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M3 21 21 3"></path>
</svg>