@fattureincloud/fic-design-system 0.15.2 → 0.15.4
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,12 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
|
2
|
+
import { ComponentType } from '../../common/types';
|
3
|
+
export declare const GridCardContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("../card/types").StyledCardProps & {
|
3
4
|
children: import("react").ReactNode | import("react").ReactNode[];
|
4
5
|
} & import("react").RefAttributes<HTMLDivElement>>, import("styled-components").DefaultTheme, {}, never>;
|
5
|
-
export declare const GridCardContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
6
6
|
declare type GridCardItemProps = {
|
7
7
|
n: number;
|
8
8
|
};
|
9
|
-
export declare const GridCardItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, GridCardItemProps
|
9
|
+
export declare const GridCardItem: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, GridCardItemProps & {
|
10
|
+
itemType: ComponentType;
|
11
|
+
}, never>;
|
10
12
|
export {};
|