UNPKG

@hmlr/govuk-react-components-library

Version:

These are common component use for React applications based on GDS and govuk-frontend

14 lines (13 loc) 308 B
import { To } from "react-router-dom"; export interface ActionLinkProps { children?: React.ReactNode; visuallyHiddenText?: string; className?: string; href?: string; to?: To; [key: string]: unknown; } export interface Action { reactListKey?: string; [key: string]: unknown; }