@cagatayfdn/flora-components 0.0.23 → 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: {