import { MantineColor, MantineSize, Text } from "@mantine/core"; export interface SettingsTitleProps { children: React.ReactNode; mt?: MantineSize; c?: MantineColor; } export function SettingsTitle(props: SettingsTitleProps) { return ({props.children}); }