UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

21 lines (20 loc) 640 B
import { GoabTableSortDirection } from '@abgov/ui-components-common'; import { JSX } from 'react'; interface WCProps { name?: string; direction?: GoabTableSortDirection; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-table-sort-header": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabTableSortProps { name?: string; direction?: GoabTableSortDirection; children?: React.ReactNode; } export declare function GoabTableSortHeader({ name, direction, children, }: GoabTableSortProps): JSX.Element; export default GoabTableSortHeader;