@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
15 lines (14 loc) • 553 B
TypeScript
import React from 'react';
import { type BoxProps } from '../Box/Box';
export declare const CaretDownIcon: () => React.JSX.Element;
interface AnimatedCaretDownIconProps {
expanded?: boolean;
color?: BoxProps['color'];
/**
* Drop the 16×16 outer wrapper and render the chevron in a tight 8×8 box.
* Use when the parent already provides the hit area / spacing.
*/
compact?: boolean;
}
export declare const AnimatedCaretDownIcon: ({ expanded, color, compact, }: AnimatedCaretDownIconProps) => React.JSX.Element;
export {};