@primer/react
Version:
An implementation of GitHub's Primer Design System using React
11 lines • 351 B
TypeScript
import type React from 'react';
import { type SxProp } from '../sx';
declare const Pagehead: ({ className, ...rest }: PageheadProps) => React.JSX.Element;
/**
* @deprecated
*/
export type PageheadProps = SxProp & React.ComponentPropsWithoutRef<'div'> & {
as?: React.ElementType;
};
export default Pagehead;
//# sourceMappingURL=Pagehead.d.ts.map