Stroke Width
Controls the width of a stroke in SVG shapes.
Utility | Properties |
---|---|
sw-0 | stroke-width: 0; |
sw-1 | stroke-width: 1; |
sw-2 | stroke-width: 0.2; |
sw-4 | stroke-width: 0.4; |
sw-6 | stroke-width: 0.6; |
sw-8 | stroke-width: 0.8; |
This example showcases various stroke widths:
- The sw-2 utility sets the stroke width to 0.2.
- The sw-6 utility sets the stroke width to 0.6.
- The sw-1 utility sets the stroke width to 1.
<div class="d-g g-16 gtc-1 sm:gtc-3"> <div> <svg class="d-16 s-indigo sw-2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"/><path d="M8 14v.5"/><path d="M16 14v.5"/><path d="M11.25 16.25h1.5L12 17l-.75-.75Z"/></svg> </div> <div> <svg class="d-16 s-indigo sw-6" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"/><path d="M8 14v.5"/><path d="M16 14v.5"/><path d="M11.25 16.25h1.5L12 17l-.75-.75Z"/></svg> </div> <div> <svg class="d-16 s-indigo sw-1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"/><path d="M8 14v.5"/><path d="M16 14v.5"/><path d="M11.25 16.25h1.5L12 17l-.75-.75Z"/></svg> </div></div>
Conditional styles
Learn how to override existing utilities based on the user's screen size or other factors, such as hover states.
Media modifiers
You can combine responsive breakpoints like sm:sw-*
,md:sw-*
, lg:sw-*
, and xxl:sw-*
allows targeting specific utilities in different viewports.
<div class="sw-2 md:sw-4 ..."></div>
Hover modifiers
Alternatively, you can apply :hover
by using h:sw-*
utility to override elements and change their values when hovering over them.
<div class="sw-2 h:sw-4 ..."></div>