Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/five-foxes-push.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@genseki/react": patch
---

fix: rich text type button
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const RedoButton = () => {

return (
<Button
type="button"
size="md"
variant="ghost"
className="duration-150 ease-out transition-all h-[36px]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export const TextAlignButton = ({ type }: { type: TextAlignType }) => {
return (
<ToggleGroupItem value={type} aria-label={`Align ${type}`} asChild>
<ToolbarItem
type="button"
variant="default"
data-selected={isSelected}
aria-label={`Text align ${type}`}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const UploadImageButton = () => {

return (
<Button
type="button"
size="md"
variant="ghost"
className="self-center h-[36px]"
Expand Down
Loading