Skip to content

Commit

Permalink
add fixes (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
severinlandolt committed Apr 30, 2024
1 parent 95b519a commit 8068612
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/components/Checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Tremor Raw Checkbox [v0.0.0]
// Tremor Raw Checkbox [v0.0.1]

import React from "react"
import * as CheckboxPrimitives from "@radix-ui/react-checkbox"
Expand Down Expand Up @@ -59,6 +59,7 @@ const Checkbox = React.forwardRef<
</svg>
) : (
<svg
aria-hidden="true"
width="16"
height="16"
viewBox="0 0 16 16"
Expand Down
4 changes: 3 additions & 1 deletion src/components/Checkbox/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Tremor Raw Checkbox Changelog

## 0.0.0
## 0.0.1

### Changes

- Fix: Add aria-hidden to svg
4 changes: 2 additions & 2 deletions src/components/RadioGroup/RadioGroup.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Tremor Raw RadioGroup [v0.0.0]
// Tremor Raw RadioGroup [v0.0.1]

import React from "react"
import * as RadioGroupPrimitives from "@radix-ui/react-radio-group"
Expand Down Expand Up @@ -33,7 +33,7 @@ const RadioGroupIndicator = React.forwardRef<
<div
className={cx(
// base
"size size-1.5 shrink-0 rounded-full",
"size-1.5 shrink-0 rounded-full",
// indicator
"bg-white",
// disabled
Expand Down
4 changes: 3 additions & 1 deletion src/components/RadioGroup/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Tremor Raw RadioGroup Changelog

## 0.0.0
## 0.0.1

### Changes

- Fix: Remove duplicate size

0 comments on commit 8068612

Please sign in to comment.