UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

14 lines (13 loc) 391 B
import React from "react"; //#region src/ActionList/Heading.d.ts type HeadingLevels = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; type HeadingVariants = 'large' | 'medium' | 'small'; type ActionListHeadingProps = { as: HeadingLevels; size?: HeadingVariants; visuallyHidden?: boolean; className?: string; style?: React.CSSProperties; }; //#endregion export { ActionListHeadingProps };