UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

17 lines (16 loc) 493 B
import { Margins } from '@abgov/ui-components-common'; interface WCProps extends Margins { testid?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-divider": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabDividerProps extends Margins { testId?: string; } export declare function GoabDivider(props: GoabDividerProps): import("react/jsx-runtime").JSX.Element; export default GoabDivider;