Skip to content

Commit

Permalink
docs: Add Typography usage to README
Browse files Browse the repository at this point in the history
  • Loading branch information
emncnozge committed Sep 25, 2024
1 parent 82454de commit f52ef0b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ public partial class Index
- [Toggle](#toggle)
- [Tooltip](#tooltip)
- [Tree](#tree)
- [Typography](#typography)
- [Upload](#upload)
- [Form Validation](#form-validation)
- [Workflow](#workflow)
Expand Down Expand Up @@ -1328,6 +1329,12 @@ treeNodes.Add("sample-child-2", new TreeNode()
tree.TreeModel = treeNodes;
```

## Typography
```razor
<Typography Format="TypographyFormat.Label" TextColor="TypographyColor.Std" TextDecoration="TextDecoration.None">Label, Std, None</Typography>
<Typography Bold="true" Format="TypographyFormat.Code_Lg" TextColor="TypographyColor.Contrast" TextDecoration="TextDecoration.Line_Through">Bold, Code_Lg, Contrast, Line_Through</Typography>
```

## Upload

```razor
Expand Down

0 comments on commit f52ef0b

Please sign in to comment.