├── .gitignore ├── README.md ├── package.json ├── public └── index.html ├── src ├── App.js ├── assets │ └── arrow.svg ├── components │ └── CustomSelect │ │ ├── Option.js │ │ ├── Select.js │ │ ├── index.js │ │ └── style.css ├── index.js └── styles.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/assets/arrow.svg -------------------------------------------------------------------------------- /src/components/CustomSelect/Option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/components/CustomSelect/Option.js -------------------------------------------------------------------------------- /src/components/CustomSelect/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/components/CustomSelect/Select.js -------------------------------------------------------------------------------- /src/components/CustomSelect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/components/CustomSelect/index.js -------------------------------------------------------------------------------- /src/components/CustomSelect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/components/CustomSelect/style.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/src/styles.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/CustomSelectReact/HEAD/yarn.lock --------------------------------------------------------------------------------