import { PropsWithChildren } from 'react'; import clsx from 'clsx'; type Color = 'orange' | 'blue'; export interface Props { color?: Color; } export function TextTip({ color = 'orange', children, }: PropsWithChildren) { return (