Skip to content

Commit

Permalink
refactor(docs): add text-start to th
Browse files Browse the repository at this point in the history
  • Loading branch information
brankoconjic committed May 11, 2024
1 parent a00409f commit d0db1c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/docs/src/components/PropsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ export const PropsTable = React.forwardRef<
<table className="m-0 text-sm" {...otherProps}>
<thead>
<tr>
<th>
<th className="text-start">
{isData ? "Data attribute" : isOptions ? "Option" : isUtility ? "Class" : "Prop"}
</th>

{isUtility ? <th>Value</th> : <th>Values</th>}
<th className="text-start">{isUtility ? "Values" : "Value"}</th>

{!isData && !isUtility ? <th>Default</th> : null}
{!isData && !isUtility ? <th className="text-start">Default</th> : null}
</tr>
</thead>

Expand Down

0 comments on commit d0db1c2

Please sign in to comment.