You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
850 B

3 years ago
import React from "react";
import ButtonNewDesign from "../ButtonNewDesign";
const ViewEdit = () => {
return (
<div className="flex flex-row justify-end gap-x-2">
<ButtonNewDesign
bgColor={"bg-blue-400"}
bgHoverColor={"hover:bg-blue-600"}
textColor={"text-white"}
border={"border-0"}
borderRadius={"rounded"}
fontSize={"text-xs"}
padding={"p-2"}
icon={null}
text={"ویرایش"}
/>
<ButtonNewDesign
bgColor={"bg-transparent"}
bgHoverColor={null}
textColor={"text-blue-600"}
border={"border"}
borderColor={"border-blue-600"}
borderRadius={"rounded"}
fontSize={"text-xs"}
padding={"p-2"}
icon={null}
text={"نمایش"}
/>
</div>
);
};
export default ViewEdit;