mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-28 18:36:23 +02:00
9 lines
503 B
TypeScript
9 lines
503 B
TypeScript
|
|
// Shared components for SurfSense Browser Extension
|
||
|
|
// These components are reusable across the extension UI
|
||
|
|
|
||
|
|
export { PriceDisplay, type PriceDisplayProps } from "./PriceDisplay";
|
||
|
|
export { ChainIcon, getChainColor, type ChainIconProps, type ChainType } from "./ChainIcon";
|
||
|
|
export { RiskBadge, getRiskLevelFromScore, type RiskBadgeProps, type RiskLevel } from "./RiskBadge";
|
||
|
|
export { SuggestionCard, DEFAULT_CRYPTO_SUGGESTIONS, type SuggestionCardProps, type SuggestionType } from "./SuggestionCard";
|
||
|
|
|