16 lines
468 B
React
16 lines
468 B
React
export function DesignTokenShowcase() {
|
|
return (
|
|
<section className="ui-panel" aria-labelledby="token-showcase-title">
|
|
<h2 id="token-showcase-title" className="text-xl font-semibold">
|
|
Design token fixture
|
|
</h2>
|
|
<p className="text-content-muted">
|
|
Semantic tokens style loading, empty, and terminal surfaces.
|
|
</p>
|
|
<button className="ui-button" type="button">
|
|
Token action
|
|
</button>
|
|
</section>
|
|
);
|
|
}
|