Skip to content

Commit

Permalink
docs: add tag section to color token page (#3933)
Browse files Browse the repository at this point in the history
* message

* message

* message

---------

Co-authored-by: Alison Joseph <[email protected]>
  • Loading branch information
laurenmrice and alisonjoseph authored Feb 28, 2024
1 parent 6b72ae3 commit eb92833
Show file tree
Hide file tree
Showing 2 changed files with 865 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/components/ColorTokenTable/ColorTokenTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,29 @@ export default class ColorTokenTable extends React.Component {
</tbody>
</table>
</div>
<div className="cds--col-lg-7">
<h3 className="page-h3">Tag</h3>
</div>
<div className="cds--col-lg-12 cds--no-gutter">
<table className="page-table">
<thead>
<tr>
<th>Token</th>
<th>Role</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{Object.keys(colorTokens['tag']).map((token, i) =>
this.renderToken(
token,
colorTokens['tag'][token],
i
)
)}
</tbody>
</table>
</div>
</section>
</div>
);
Expand Down
Loading

0 comments on commit eb92833

Please sign in to comment.