hds-web 1.9.0 → 1.9.1
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/package.json
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
|
1
|
+
import React from "react"
|
2
|
+
import { HDSColor } from "../../../foundation/ColorPalette"
|
3
|
+
import { Typography } from "../../../foundation/Typography"
|
4
|
+
import {Badges} from "../../BadgesCaption"
|
5
|
+
export default function ImageBadgeCard (card){
|
2
6
|
|
3
7
|
return(
|
4
8
|
<>
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export {default as TalkCard} from './talkCard';
|
2
2
|
export {default as TalkCard2} from './talkcard2';
|
3
3
|
export {default as IconCard} from './iconCard';
|
4
|
-
export {default as ImageCard} from './imageCard';
|
4
|
+
export {default as ImageCard} from './imageCard';
|
5
|
+
export {default as ImageBadgeCard} from './imageBadgeCard';
|