src/components/card-contact.tsx'use client'import React, { useState } from 'react'import { clsx } from 'clsx'import { Icon } from '@/components/icon'import { Heading } from '@/components/heading'import { Paragraph } from '@/components/paragraph'import clipboardIcon from '@iconify/icons-lucide/clipboard'interface CardContactProps {children?: React.ReactNodeclassName?: string/** Link URL */href: string/** Background color override */color?: string/** Heading text */heading: string/** Description text */text: string
Showing the first 20 lines.
Get full code