@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
11 lines (10 loc) • 381 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;
}
export declare function FunDivider({ marginTop, marginBottom, borderColor, label, }: FunDividerProps): React.JSX.Element;
export {};