@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.
10 lines (9 loc) • 324 B
TypeScript
import type { Theme } from "../../../defaultTheme";
interface Args {
readonly state: string;
readonly disabled?: boolean;
readonly theme: Theme;
readonly selected?: boolean;
}
declare const getButtonBoxShadow: ({ state, disabled, theme, selected }: Args) => string | null;
export default getButtonBoxShadow;