Skip to content

Installing @briklab/lib/stylesheet

Stylesheet is part of @briklab/lib. Follow the lib installation tutorial to get started.

Quick Install

bash
pnpm add @briklab/lib
# or
npm install @briklab/lib

Verify Installation

ts
import { InlineStyle } from "@briklab/lib/stylesheet";

const style = new InlineStyle({ color: "red" }, "boundary");
console.log("Stylesheet installed successfully!");

Next Steps