@studiocms/ui
Version:
The UI library for StudioCMS. Includes the layouts & components we use to build StudioCMS.
22 lines (21 loc) • 617 B
TypeScript
import type { AstroIntegration } from 'astro';
type Options = {
/**
* Path to a custom CSS file to be included in the build.
* Can be used to overwrite the default styles by redefining the CSS variables.
*
* @link https://ui.studiocms.dev/docs/guides/customization/
*/
customCss?: string;
/**
* Disable CSS Generation and require manual addition of the global CSS
*
* @example
* ```ts
* import 'studiocms:ui/global-css';
* ```
*/
noInjectCSS?: boolean;
};
export default function integration(options?: Options): AstroIntegration;
export {};