@clayui/button
Version:
ClayButton component
21 lines (20 loc) • 569 B
TypeScript
/**
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
import React from 'react';
declare type Props = {
/**
* Flag to indicate the spacing between the buttons.
*/
spaced?: boolean;
/**
* Flag to indicate if buttons are stacked vertically.
*/
vertical?: boolean;
} & React.HTMLAttributes<HTMLDivElement>;
declare const Group: {
({ children, className, role, spaced, vertical, ...otherProps }: Props): JSX.Element;
displayName: string;
};
export default Group;