mirror of
https://github.com/diced/zipline.git
synced 2026-01-06 17:54:35 -08:00
* feat: prettier run * fix: whatever that was * chore: format more files * chore: make format command better
10 lines
193 B
TypeScript
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>
|
|
);
|
|
}
|