UNPKG

@skyrim-royale/skyrim-royale-ui-components

Version:
15 lines (14 loc) 386 B
import React from "react"; export interface ButtonGroupProps { /** * visible arrow icons when no hover */ visibleIcons?: boolean; children: any[]; className?: string; style?: React.CSSProperties; } export declare const Group: { ({ children, className, visibleIcons, ...props }: ButtonGroupProps): JSX.Element; displayName: string; };