Files
Homarr/src/components/layout/Tip.tsx
2022-06-28 19:08:18 +02:00

20 lines
321 B
TypeScript

import { Text } from '@mantine/core';
interface TipProps {
children: React.ReactNode;
}
export default function Tip(props: TipProps) {
return (
<Text
style={{
fontSize: '0.75rem',
color: 'gray',
marginBottom: '0.5rem',
}}
>
Tip: {props.children}
</Text>
);
}