@datavac/ui-kit 1.3.0 → 1.4.0-administration-icon.1

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.
@@ -0,0 +1,6 @@
1
+ import { type ButtonHTMLAttributes } from 'react';
2
+ export type AdministrationMethod = 'cutaneously' | 'intramuscularly' | 'subcutaneously' | 'intradermally' | 'drops' | 'pills' | 'intranasally';
3
+ export interface AdministrationIconProps extends ButtonHTMLAttributes<HTMLButtonElement> {
4
+ method: AdministrationMethod;
5
+ }
6
+ export declare function AdministrationIcon({ method, className, disabled, ...props }: AdministrationIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export { AdministrationIcon } from './AdministrationIcon';
2
+ export type { AdministrationIconProps, AdministrationMethod } from './AdministrationIcon';