Files
um-react/src/components/HelpText/VQuote.tsx
2025-05-18 02:41:20 +09:00

10 lines
214 B
TypeScript

export function VQuote({ children }: { children: React.ReactNode }) {
return (
<>
<span className="select-none"></span>
{children}
<span className="select-none"></span>
</>
);
}