VMS-frontend/src/shared/components/Currency.tsx
NlightN22 ece046d2fd init
2024-02-17 22:57:32 +07:00

13 lines
308 B
TypeScript

import React from 'react';
import { Text, TextProps } from '@mantine/core'
import { strings } from '../strings/strings';
const Currency = (props: TextProps) => {
return (
<Text pl='0.2rem' fz="md" fw={500} {...props} >
{strings.currency}
</Text>
);
};
export default Currency;