sdxc

Type to search, or start from one of these:

color

stroke-linejoin

Sets stroke-linejoin, the SVG paint property controlling how a <path>/<polyline>/<polygon> shape's stroke renders at a corner between two segments.

import { strokeLinejoin } from "@sdxc/u/color";

Quick reference

Every documented call, beside the CSS it emits.

CallCSS
u.strokeLinejoin("round")css({ strokeLinejoin: "round" })

Using a custom value

Every scale argument also takes a raw CSS value, which passes through untouched.

u.strokeLinejoin("round")

Applying on a state

Wrap the call in a state utility to scope it to one selector.

u.hover(u.strokeLinejoin("round"))

Responsive design

Wrap the call in a container query to scope it to one width.

u.at("md", u.strokeLinejoin("round"))

Signature

u.strokeLinejoin(value: "miter" | "round" | "bevel")