@ngrok/mantle-tailwind-preset
[!CAUTION]
This package has been deprecated as of v0.0.21. It has been rolled up into @ngrok/mantle.
Going forward, import the mantlePreset
from @ngrok/mantle
.
A Tailwind CSS preset for ngrok's Mantle design system.
To get started, install the preset with your preferred package manager:
package manager | command |
---|
npm | npm install -D @ngrok/mantle-tailwind-preset |
yarn | yarn add -D @ngrok/mantle-tailwind-preset |
pnpm | pnpm add -D @ngrok/mantle-tailwind-preset |
bun | bun add -D @ngrok/mantle-tailwind-preset |
Then, add the preset to your tailwind configuration.
import { mantlePreset } from "@ngrok/mantle-tailwind-preset";
import type { Config } from "tailwindcss";
export default {
presets: [mantlePreset],
} satisfies Config;