@primer/react
Version:
An implementation of GitHub's Primer Design System using React
18 lines • 453 B
TypeScript
//#region src/Pagination/model.d.ts
type PageDataProps = {
props: {
href?: string;
rel?: string;
'aria-label'?: string;
'aria-current'?: 'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false' | boolean;
'aria-hidden'?: boolean;
'aria-disabled'?: boolean;
onClick?: (e: React.MouseEvent) => void;
as?: string;
role?: string;
};
key: string;
content: string;
};
//#endregion
export { PageDataProps };