import React from 'react'; import { LucideIcon } from 'lucide-react'; import { Button } from '@/ui/Button'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; import { Icon } from '@/ui/Icon'; interface SkillLevelButtonProps { label: string; icon: LucideIcon; color: string; bgColor: string; borderColor: string; count: number; onClick: () => void; } export function SkillLevelButton({ label, icon, color, bgColor, borderColor, count, onClick, }: SkillLevelButtonProps) { return ( ); }