/* eslint-disable flowtype/require-exact-type */ // @flow import * as React from "react"; import type { HeightProps, Size } from ".."; import type { ThemeProps } from "../../../defaultTheme"; export type GetCommonPropsReturn = {| width?: string, padding: string, fontWeight: string, contentAlign: string, contentWidth: string, ...HeightProps, |}; export type GetCommonProps = ({ width?: string, size?: Size, contentAlign?: string, contentWidth?: string, iconRight?: React.Node, iconLeft?: React.Node, children?: React.Node, ...ThemeProps, }) => GetCommonPropsReturn; declare export default GetCommonProps;