mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-25 03:34:22 +01:00
33 lines
995 B
TypeScript
33 lines
995 B
TypeScript
import { Button as Kobalte } from "@kobalte/core/button"
|
|
import { type ComponentProps, splitProps } from "solid-js"
|
|
import { Icon, IconProps } from "./icon"
|
|
|
|
export interface IconButtonProps extends ComponentProps<typeof Kobalte> {
|
|
icon: IconProps["name"]
|
|
size?: "normal" | "large"
|
|
iconSize?: IconProps["size"]
|
|
variant?: "primary" | "secondary" | "ghost"
|
|
}
|
|
|
|
export function IconButton(props: ComponentProps<"button"> & IconButtonProps) {
|
|
const [split, rest] = splitProps(props, ["variant", "size", "iconSize", "class", "classList"])
|
|
return (
|
|
<Kobalte
|
|
{...rest}
|
|
data-component="icon-button"
|
|
data-size={split.size || "normal"}
|
|
data-variant={split.variant || "secondary"}
|
|
classList={{
|
|
...(split.classList ?? {}),
|
|
[split.class ?? ""]: !!split.class,
|
|
}}
|
|
>
|
|
<Icon
|
|
data-slot="icon"
|
|
name={props.icon}
|
|
size={split.iconSize ?? (split.size === "large" ? "normal" : "small")}
|
|
/>
|
|
</Kobalte>
|
|
)
|
|
}
|