UNPKG

tailwindcss-capsize

Version:
11 lines (10 loc) 365 B
import createPlugin from 'tailwindcss/plugin'; export interface CapsizePluginOptions { /** Custom utility classname. */ className?: string; /** The root font-size, in pixels. */ rootSize?: number; } type PluginType = ReturnType<typeof createPlugin.withOptions<CapsizePluginOptions>>; declare const thisPlugin: PluginType; export default thisPlugin;