@data-c/ui 0.2.9 → 0.2.10
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 +1 -2
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -818,8 +818,7 @@ interface CardTitleProps {
|
|
|
818
818
|
}
|
|
819
819
|
declare function CardTitle(props: CardTitleProps): react_jsx_runtime.JSX.Element;
|
|
820
820
|
|
|
821
|
-
interface CardContentProps {
|
|
822
|
-
children: React.ReactNode;
|
|
821
|
+
interface CardContentProps extends StackProps {
|
|
823
822
|
}
|
|
824
823
|
declare function CardContent(props: CardContentProps): react_jsx_runtime.JSX.Element;
|
|
825
824
|
|