@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
13 lines (12 loc) • 448 B
TypeScript
import React from 'react';
import { type BoxProps } from '../Box/Box';
interface FunDividerProps {
marginTop?: BoxProps['marginTop'];
marginBottom?: BoxProps['marginBottom'];
borderColor?: BoxProps['borderColor'];
label?: string;
className?: string;
visible?: boolean;
}
export declare function FunDivider({ marginTop, marginBottom, borderColor, label, className, visible, }: FunDividerProps): React.JSX.Element;
export {};