Created AncillaryCard for SW-1504 and SW-1546 * Created AncillaryCard for SW-1504 and SW-1546 * updated divider * added dangerouslySetInnerHTML * Added color="uiTextHighContrast" Approved-by: Bianca Widstam
14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
export interface AncillaryCardProps {
|
|
ancillary: {
|
|
title: string
|
|
imageUrl: string
|
|
imageOpacity?: number
|
|
price: {
|
|
total: number
|
|
currency: string
|
|
}
|
|
points?: number
|
|
description?: string
|
|
}
|
|
}
|