10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
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>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|