Files
zipline/src/components/MutedText.tsx
Jonathan af0cd26ea0 feat: prettier run (#200)
* feat: prettier run

* fix: whatever that was

* chore: format more files

* chore: make format command better
2022-10-19 19:43:01 -07:00

10 lines
193 B
TypeScript

import { Text } from '@mantine/core';
export default function MutedText({ children, ...props }) {
return (
<Text color='dimmed' size='xl' {...props}>
{children}
</Text>
);
}