Skip to content

Commit

Permalink
default expanded to true
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesmac committed Mar 8, 2024
1 parent 698e7e4 commit eb015ad
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ export interface RawInfoIconProps extends IconButtonProps, ExpansionProps {
}

export const RawInfoIconButton = forwardRef<HTMLButtonElement, RawInfoIconProps>(
({ defaultExpandedJson, dialogContent, iconOnly, iconSize = 32, onCloseCallback, payload, presetIconSize, updateExpandedJson, ...props }, ref) => {
(
{ defaultExpandedJson = true, dialogContent, iconOnly, iconSize = 32, onCloseCallback, payload, presetIconSize, updateExpandedJson, ...props },
ref,
) => {
const [open, setOpen] = useState(false)
const size = presetIconSizeValue(presetIconSize)

Expand Down

0 comments on commit eb015ad

Please sign in to comment.