// types import { ButtonProps } from "./type"; export const PrimaryButton: React.FC = ({ children, className = "", onClick, type = "button", disabled = false, loading = false, size = "sm", outline = false, }) => ( );