import { t } from "../../i18n"; import { useThemeColors } from "../../theme/theme-context"; import { Box, SpinnerMark, Text } from "../../ui"; export interface SpinnerProps { label?: string; } export function Spinner({ label }: SpinnerProps) { const colors = useThemeColors(); return ( {label && {t(label)}} ); }