@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
18 lines (14 loc) • 395 B
Flow
// @flow
import type { ThemeProps } from "../../../defaultTheme";
import type { Type } from "..";
import type { Background, BoxShadow, Foreground } from "../../../primitives/ButtonPrimitive";
export type GetAlertButtonStyles = ({|
disabled: boolean,
type: Type,
...ThemeProps,
|}) => {|
...Background,
...Foreground,
...BoxShadow,
|};
declare export default GetAlertButtonStyles;