import React from 'react'; import { Text, TextProps } from '@mantine/core' import { strings } from '../strings/strings'; const Currency = (props: TextProps) => { return ( {strings.currency} ); }; export default Currency;