UNPKG

@primer/react-brand

Version:

Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.

9 lines (8 loc) 365 B
import { PropsWithChildren } from 'react'; import type { BaseProps } from '../../component-helpers'; export type OrderedListProps = PropsWithChildren<BaseProps<HTMLOListElement>>; declare function Root({ children, ...props }: OrderedListProps): import("react/jsx-runtime").JSX.Element; export declare const OrderedList: typeof Root & { Item: any; }; export {};