tailwindcss-grid-areas
Version:
A Tailwind CSS plugin designed to streamline the creation of utility classes for defining grid areas in your layouts. This plugin simplifies the process of specifying grid areas, automatically generating corresponding utility classes that seamlessly integ
15 lines (11 loc) • 509 B
TypeScript
import * as tailwindcss_types_config from 'tailwindcss/types/config';
type TemplateWithBreakpoints = Record<"base", string[]> & Record<string, string[]>;
type GridAreasOptions = Record<string, string[] | TemplateWithBreakpoints>;
declare const gridAreas: {
(options: GridAreasOptions | undefined): {
handler: tailwindcss_types_config.PluginCreator;
config?: Partial<tailwindcss_types_config.Config>;
};
__isOptionsFunction: true;
};
export { type GridAreasOptions, gridAreas };