@primer/react
Version:
An implementation of GitHub's Primer Design System using React
12 lines (11 loc) • 608 B
TypeScript
import { Blankslate, BlankslateDescriptionProps, BlankslateHeadingProps, BlankslatePrimaryActionProps, BlankslateProps, BlankslateSecondaryActionProps, BlankslateVisualProps, Description, Heading, PrimaryAction, SecondaryAction, Visual } from "./Blankslate.js";
//#region src/Blankslate/index.d.ts
declare const BlankslateContainer: typeof Blankslate & {
Visual: typeof Visual;
Heading: typeof Heading;
Description: typeof Description;
PrimaryAction: typeof PrimaryAction;
SecondaryAction: typeof SecondaryAction;
};
//#endregion
export { BlankslateContainer as Blankslate, type BlankslateProps };