commit
6abc3c2c0c
@ -1,11 +1,11 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import classes from "./basebutton.module.scss";
|
import "./basebutton.scss"
|
||||||
|
|
||||||
export const BaseButton = ({ children, styles, ...props }) => {
|
export const BaseButton = ({ children, styles, ...props }) => {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
className={styles ? `${styles} ${classes.button}` : classes.button}
|
className={styles ? `${styles} button` : "button"}
|
||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
|
@ -16,7 +16,7 @@ import {
|
|||||||
setProjectBoardFetch,
|
setProjectBoardFetch,
|
||||||
setToggleTab,
|
setToggleTab,
|
||||||
getProjectBoard,
|
getProjectBoard,
|
||||||
getBoarderLoader, filteredParticipateTasks, filterCreatedByMe
|
getBoarderLoader,
|
||||||
} from "../../../redux/projectsTrackerSlice";
|
} from "../../../redux/projectsTrackerSlice";
|
||||||
import { apiRequest } from "../../../api/request";
|
import { apiRequest } from "../../../api/request";
|
||||||
|
|
||||||
@ -33,7 +33,6 @@ import link from "../../../images/link.svg";
|
|||||||
import archive2 from "../../../images/archive.svg";
|
import archive2 from "../../../images/archive.svg";
|
||||||
import del from "../../../images/delete.svg";
|
import del from "../../../images/delete.svg";
|
||||||
import edit from "../../../images/edit.svg";
|
import edit from "../../../images/edit.svg";
|
||||||
import accept from "../../../assets/images/accept.png";
|
|
||||||
import close from "../../../images/closeProjectPersons.svg";
|
import close from "../../../images/closeProjectPersons.svg";
|
||||||
|
|
||||||
import "./ticketFullScreen.scss";
|
import "./ticketFullScreen.scss";
|
||||||
|
Loading…
Reference in New Issue
Block a user