Getting Started
To install the TORCH Glare Components Library, run the following command to initialize your project.
Docs
npx torch-glare@latest init
{
"path": "./src" // the path where you want to install the components
}
<head>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.statically.io/gh/TORCH-Corp/SF-PRO-FONT/main/font/fonts.css"
/>
<link
rel="preload"
href="https://cdn.statically.io/gh/TORCH-Corp/SF-PRO-FONT/main/font/SF-Pro.woff2"
as="font"
type="font/woff2"
/>
</head>
npx torch-glare@latest add
npx torch-glare@latest add Button
import { Button } from "./Button";
function App() {
return (
<Button variant="PrimeStyle" size="M">
Click Me
</Button>
);
}