fix: minor UI issues
This commit is contained in:
parent
df20979afa
commit
8125c8695c
5 changed files with 44 additions and 33 deletions
|
|
@ -8,11 +8,11 @@ export function RoundButton (data: {
|
|||
className?: string;
|
||||
external?: boolean;
|
||||
style?: ButtonStyle;
|
||||
cssStyle?: CSSProperties;
|
||||
} & InteractParams & FocusParams)
|
||||
{
|
||||
|
||||
return (
|
||||
<Button onFocus={data.onFocus} id={data.id} style={data.style} className={twMerge("rounded-full", data.external && "focusable focusable-primary focusable-hover", data.className)} onAction={data.onAction}>
|
||||
<Button cssStyle={data.cssStyle} onFocus={data.onFocus} id={data.id} style={data.style} className={twMerge("rounded-full", data.external && "focusable focusable-primary focusable-hover", data.className)} onAction={data.onAction}>
|
||||
{data.children}
|
||||
</Button>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue