@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.
12 lines (11 loc) • 422 B
TypeScript
import type { Interpolation } from "styled-components";
import type { Type, ButtonStates } from "../types";
import type { Theme } from "../../defaultTheme";
interface BoxShadowProps {
state: ButtonStates;
disabled: boolean;
theme: Theme;
type: Type;
}
declare const getButtonBoxShadow: ({ state, disabled, theme, type, }: BoxShadowProps) => Interpolation<string> | null;
export default getButtonBoxShadow;