style: add select-none class to Default text in TextView component

This commit is contained in:
Maze Winther
2025-07-03 22:26:27 +02:00
parent c413b53c33
commit b5af50b0d8

View File

@ -2,7 +2,7 @@ export function TextView() {
return (
<div className="p-4">
<div className="p-3 bg-accent/50 rounded-lg flex items-center justify-center size-24">
<span className="text-xs">Default text</span>
<span className="text-xs select-none">Default text</span>
</div>
</div>
);