tailwindcss-capsize
Version:
TailwindCSS leading-trim utility classes.
11 lines (10 loc) • 365 B
TypeScript
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;