UNPKG

@violetprotocol/nudge-components

Version:

Components for Nudge's websites and applications.

11 lines (10 loc) 364 B
/// <reference types="react" /> import { SocialIconVariant } from "./types"; export declare const DEFAULT_ICON_COLOR = "#C4C5D5"; export declare const DEFAULT_LARGE_ICON_COLOR = "white"; export interface SocialIconProps { variant: SocialIconVariant; iconColor?: string; className?: string; } export declare const SocialIcon: React.FC<SocialIconProps>;