@cagatayfdn/flora-components 0.0.22 → 0.0.24

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.
package/dist/index.d.ts CHANGED
@@ -197,6 +197,16 @@ declare type CanProps = {
197
197
  byPass?: boolean;
198
198
  };
199
199
 
200
+ export declare const Card: (props: CardProps) => JSX.Element;
201
+
202
+ declare type CardProps = {
203
+ children?: ReactNode;
204
+ icon?: Icons;
205
+ bgColor?: string;
206
+ title?: string;
207
+ description?: string | ReactNode;
208
+ };
209
+
200
210
  export declare const changeLanguage: (user: any, t: TFunction) => void;
201
211
 
202
212
  export declare const Chart: {
@@ -264,6 +274,14 @@ export declare enum CopyTextStatusEnum {
264
274
  ERROR = "error"
265
275
  }
266
276
 
277
+ export declare function Countdown({ seconds, reset, onEnd }: CountdownProps): JSX_2.Element;
278
+
279
+ declare type CountdownProps = {
280
+ seconds: number;
281
+ reset?: any;
282
+ onEnd?: () => void;
283
+ };
284
+
267
285
  declare type CustomItemProps = {
268
286
  item: OptionProps;
269
287
  };