@foris/avocado-suite 0.16.1 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
- import { FC, ReactNode } from 'react';
2
- interface CardProps {
1
+ import React, { FC, ReactNode } from 'react';
2
+ interface CardProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
3
  /** Content card */
4
4
  children: ReactNode;
5
5
  /** Overwrite className */
@@ -0,0 +1,8 @@
1
+ interface UseCloseSelectProps {
2
+ id?: string;
3
+ }
4
+ export declare const useCloseSelect: ({ id }: UseCloseSelectProps) => {
5
+ uniqueId: string;
6
+ handleCloseSelect: () => void;
7
+ };
8
+ export {};