/**
* Button - Simple button component with variants
*
* @example
*
*/
import React from 'react';
import styles from './Button.module.css';
interface ButtonProps {
children: React.ReactNode;
onClick?: () => void;
variant?: 'primary' | 'secondary' | 'danger';
disabled?: boolean;
type?: 'button' | 'submit' | 'reset';
className?: string;
}
export const Button: React.FC = ({
children,
onClick,
variant = 'primary',
disabled = false,
type = 'button',
className,
}) => {
return (
);
};