@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
9 lines (8 loc) • 322 B
TypeScript
import { FC, PropsWithChildren, ReactNode } from 'react';
export interface ChipProps {
className?: string;
leading?: ReactNode;
trailing?: ReactNode;
}
/** An outlined chip component that displays a label and optional leading and trailing icons. */
export declare const Chip: FC<PropsWithChildren<ChipProps>>;