mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
export function VQuote({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<span className="select-none">「</span>
|
|
{children}
|
|
<span className="select-none">」</span>
|
|
</>
|
|
);
|
|
}
|