update 1 file and delete 5 files

master
mahdi 3 years ago
parent d3bb010313
commit 0bbcdf6201
  1. 0
      public/images/SelectYeararrow-down.svg
  2. 0
      public/images/SelectYeararrow-up.svg
  3. 0
      src/components/MiniComponents/SelectYear/SelectYearMonth.js
  4. 5
      src/components/MiniComponents/SelectYear/index.js
  5. 8
      src/components/MiniComponents/index.js
  6. 0
      src/components/SelectYear/index.scss

Before

Width:  |  Height:  |  Size: 573 B

After

Width:  |  Height:  |  Size: 573 B

Before

Width:  |  Height:  |  Size: 573 B

After

Width:  |  Height:  |  Size: 573 B

@ -3,10 +3,9 @@
import React, { useState, useRef } from "react"; import React, { useState, useRef } from "react";
import ScrollContainer from "react-indiana-drag-scroll"; import ScrollContainer from "react-indiana-drag-scroll";
import "./index.scss";
import arrowDown from "./arrow-down.svg"; import arrowDown from "images/SelectYeararrow-down.svg";
import arrowUp from "./arrow-up.svg"; import arrowUp from "images/SelectYeararrow-up.svg";
import Month from "./Month.js"; import Month from "./Month.js";
const SelectYear = ({ items }) => { const SelectYear = ({ items }) => {

@ -10,6 +10,7 @@ import CancleIcon from "./CancleIcon";
import CircleInCircle from "./CircleInCircle"; import CircleInCircle from "./CircleInCircle";
import DropDown from "./DropDown"; import DropDown from "./DropDown";
import IconText from "./IconText"; import IconText from "./IconText";
import SelectYear from "./SelectYear";
function MiniComponents() { function MiniComponents() {
const list = { const list = {
@ -20,9 +21,10 @@ function MiniComponents() {
5: <BookDesign />, 5: <BookDesign />,
6: <BreadCrumb />, 6: <BreadCrumb />,
7: <CancleIcon />, 7: <CancleIcon />,
7: <CircleInCircle />, 8: <CircleInCircle />,
8: <DropDown />, 9: <DropDown />,
8: <IconText />, 10: <IconText />,
11: <SelectYear />,
}; };
const [type, setType] = useState(1); const [type, setType] = useState(1);

Loading…
Cancel
Save