7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
import { Icon } from "@calcom/ui";
|
|
|
|
export function PayIcon(props: { currency: string; className?: string }) {
|
|
const { className, currency } = props;
|
|
return <Icon name={currency !== "BTC" ? "credit-card" : "zap"} className={className} />;
|
|
}
|