fonteva-design-guide
Version:
## Dev, Build and Test
19 lines (18 loc) • 493 B
HTML
<template>
<slot></slot>
<span data-label="value">
<span if:true={isNegative}>
(
</span>
<c-pfm-currency
if:true={showCurrency}
currency-i-s-o-code={currencyIsoCode}
is-multi-currency-org={isMultiCurrencyOrg}
val={formattedValue}
show-free-label="false"
></c-pfm-currency>
<span if:true={isNegative}>
)
</span>
</span>
</template>