@abgov/react-components 4.2.0 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,21 +0,0 @@
1
- import React, { FC } from "react";
2
- declare global {
3
- namespace JSX {
4
- interface IntrinsicElements {
5
- "goa-dropdown-item": DropdownOptionProps & React.HTMLAttributes<HTMLElement>;
6
- }
7
- }
8
- }
9
- interface DropdownOptionProps {
10
- name: string;
11
- value: string;
12
- label?: string;
13
- }
14
- interface Props {
15
- name: string;
16
- value: string;
17
- label?: string;
18
- testId?: string;
19
- }
20
- export declare const GoADropdownOption: FC<Props>;
21
- export default GoADropdownOption;