import type { ButtonProps } from "./Button";
import { Button } from "./Button";
import { IconButton } from "./IconButton";
export const ButtonPrimary = (props: ButtonProps) => (
);
ButtonPrimary.displayName = "ButtonPrimary";
export const ButtonFill = (props: ButtonProps) => (
);
ButtonFill.displayName = "ButtonFill";
export const ButtonGhost = (props: ButtonProps) => (
);
ButtonGhost.displayName = "ButtonGhost";
export { Button, IconButton };