import React from "react"; import arrow from "../../assets/icons/white-left-arrow.svg"; const ButtonNewDesign = ({ bgColor, bgHoverColor, iconBgColor, textColor, border, borderColor, borderRadius, fontSize, paddingX, paddingY, icon, buttonIcon, text, onClick, iconMarginRight, }) => { return ( ); }; export default ButtonNewDesign; ButtonNewDesign.defaultProps = { bgColor: "bg-darkGreenBg", bgHoverColor: "hover:bg-gray-900", iconBgColor: "bg-darkGreenBg", textColor: "text-white", border: "border-b-4", borderColor: "border-lightBlueBorderColor", borderRadius: "rounded", fontSize: "text-sm", paddingX: "p-4", paddingY: "p-4", // icons icon: true, buttonIcon: arrow, iconMarginRight: "mr-2", text: "اطلاعات بیشتر", };