UNPKG

@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.

9 lines (8 loc) 322 B
import * as React from "react"; interface Props { centered?: boolean; hasIcon: boolean; contentWidth?: string | null; } declare const ButtonPrimitiveContentChildren: ({ children, hasIcon, contentWidth, centered, }: React.PropsWithChildren<Props>) => JSX.Element; export default ButtonPrimitiveContentChildren;