@primer/react-brand
Version:
Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.
14 lines (13 loc) • 573 B
TypeScript
import { PropsWithChildren } from 'react';
import type { BaseProps } from '../../component-helpers';
export type UnorderedListProps = PropsWithChildren<BaseProps<HTMLUListElement>> & {
/**
* The semantic structure of list that is presented visually setting 'ol' vs 'ul' based on the style the style of the list.
*/
variant?: 'default' | 'checked' | 'x';
};
declare function Root({ variant, children, ...props }: UnorderedListProps): import("react/jsx-runtime").JSX.Element;
export declare const UnorderedList: typeof Root & {
Item: any;
};
export {};