utils#capitalizedCase TypeScript Examples

The following examples show how to use utils#capitalizedCase. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CoinAsset.tsx    From react-native-crypto-wallet-app with MIT License 6 votes vote down vote up
CoinAsset: React.FC<ICoinAssetProps> = ({ coin, amount, value, profitLoss }) => {
  const isProfit = profitLoss > 0;

  return (
    <Box
      flexDirection="row"
      alignItems="center"
      justifyContent="space-between"
      height={60}
      backgroundColor="lightBlue"
      borderRadius="full"
      style={CoinAssetStyle.container}
    >
      <Box flexDirection="row" alignItems="center">
        <Icon name={coin} width="34" height="34" />
        <View style={CoinAssetStyle.amount}>
          <StyledText variant="label" color="titleHeadline">{`${capitalizedCase(
            coin,
          )} (${getCoinSymbol(coin)})`}</StyledText>
          <StyledText variant="paragraph">{`${amount} ${getCoinSymbol(coin)}`}</StyledText>
        </View>
      </Box>
      <Box alignItems="flex-end">
        <StyledText variant="label" color="titleHeadline">
          {`$${value}`}
        </StyledText>
        <StyledText variant="label" color={isProfit ? 'success' : 'error'}>
          {`${isProfit ? '+' : '-'}${profitLoss}`}
        </StyledText>
      </Box>
    </Box>
  );
}
Example #2
Source File: CoinSliderItem.tsx    From react-native-crypto-wallet-app with MIT License 6 votes vote down vote up
CoinSliderItem: React.FC<ICoinSliderItemProps> = ({ coin }) => {
  return (
    <Box
      maxWidth={170}
      height={46}
      flexDirection="row"
      alignItems="center"
      backgroundColor="lightBlue"
      borderRadius="full"
      style={CoinSliderItemStyle.container}
    >
      <Icon name={coin} width="28" height="28" />
      <StyledText
        variant="sublimeSemiBold"
        color="titleHeadline"
        style={CoinSliderItemStyle.coinLabel}
      >
        {capitalizedCase(coin)}
      </StyledText>
    </Box>
  );
}
Example #3
Source File: Transaction.tsx    From react-native-crypto-wallet-app with MIT License 6 votes vote down vote up
Transaction: React.FC<ITransactionProps> = ({ status, value, amount, date }) => {
  return (
    <Box
      flexDirection="row"
      alignItems="center"
      justifyContent="space-between"
      height={60}
      backgroundColor="lightBlue"
      borderRadius="full"
      elevation={2}
      style={TransactionStyle.container}
    >
      <Box flexDirection="row" alignItems="center">
        <Box style={TransactionStyle.statusIcon}>
          <Icon name={status} width="34" height="34" color={getTransactionStatusColor(status)} />
        </Box>
        <StyledText variant="label" color="titleHeadline">{`$${value}`}</StyledText>
        <StyledText variant="paragraph">{amount}</StyledText>
      </Box>
      <Box alignItems="flex-end">
        <StyledText variant="label" color={getTransactionStatusColor(status)}>
          {capitalizedCase(status)}
        </StyledText>
        <StyledText variant="paragraph">{date}</StyledText>
      </Box>
    </Box>
  );
}