import React from 'react'; import { cn } from '../../lib/cn'; interface ButtonProps { disabled?: boolean; text?: string; className?: string; onClick: () => void; children?: React.ReactNode; } export const SecondaryButton: React.FC = ({ disabled = false, text = '', className, onClick, children, }) => { return ( ); };