@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 • 376 B
TypeScript
import * as React from "react";
import type { Type } from "../../types";
type Props = {
type: Type;
selected: boolean;
} & React.SVGProps<SVGPathElement> & React.PropsWithChildren;
declare const TransitionPathFill: ({ children, type, selected, ...props }: Props) => React.JSX.Element;
export default TransitionPathFill;
//# sourceMappingURL=TransitionPathFill.d.ts.map