@skymp/skymp-ui-components
Version:
Library of UI components, styles and resources of Skymp
15 lines (14 loc) • 386 B
TypeScript
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;
};