@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) • 513 B
TypeScript
import * as React from "react";
interface Props {
margin?: string | null;
width?: string | null;
height?: string | null;
}
export declare const StyledButtonPrimitiveIconContainer: import("styled-components").StyledComponent<({ className, children }: any) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
declare const ButtonPrimitiveIconContainer: ({ margin, width, height, children, }: React.PropsWithChildren<Props>) => JSX.Element;
export default ButtonPrimitiveIconContainer;