UNPKG

@blockstack/ui

Version:

Blockstack UI components built using React and styled-components with styled-system.

15 lines (14 loc) 537 B
import React from 'react'; import * as StyledSystem from 'styled-system'; import { ButtonSizes, ButtonVariants, ButtonColorVariants } from '../button'; import { BoxProps } from '../box'; export interface ButtonGroupBase { size?: ButtonSizes; color?: string; variant?: ButtonVariants; variantColor?: ButtonColorVariants; isAttached?: boolean; spacing?: StyledSystem.MarginRightProps['marginRight']; children?: React.ReactNode; } export declare type ButtonGroupProps = ButtonGroupBase & BoxProps;