Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/frugal/dep/lightningcss.ts>SVGPaint

A frugal web framework
Latest
type alias SVGPaint
import { type SVGPaint } from "https://deno.land/x/frugal@0.9.6/dep/lightningcss.ts";

An SVG <paint> value used in the fill and stroke properties.

definition:
| { type: "none"; }
| { fallback?: SVGPaintFallback | null; type: "url"; url: Url; }
| { type: "color"; value: CssColor; }
| { type: "context-fill"; }
| { type: "context-stroke"; }