diff --git a/packages/core/src/components/Select/Select.stories.tsx b/packages/core/src/components/Select/Select.stories.tsx
new file mode 100644
index 0000000000..5102947207
--- /dev/null
+++ b/packages/core/src/components/Select/Select.stories.tsx
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import React from 'react';
+import { Select } from '.';
+
+export default {
+ title: 'Select',
+ component: Select,
+};
+
+const SELECT_ITEMS = [
+ {
+ label: "test 1",
+ value: "test_1"
+ },
+ {
+ label: "test 2",
+ value: "test_2"
+ },
+ {
+ label: "test 3",
+ value: "test_3"
+ }
+]
+
+export const Default = () => (
+
+);
diff --git a/packages/core/src/components/Select/Select.tsx b/packages/core/src/components/Select/Select.tsx
new file mode 100644
index 0000000000..55b5f7aebd
--- /dev/null
+++ b/packages/core/src/components/Select/Select.tsx
@@ -0,0 +1,137 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import React, { useState } from 'react';
+import {
+ createStyles,
+ makeStyles,
+ withStyles,
+ Theme,
+} from '@material-ui/core/styles';
+
+import {
+ FormControl,
+ InputLabel,
+ Select,
+ MenuItem,
+ InputBase,
+} from '@material-ui/core';
+
+import ClosedDropdown from './static/ClosedDropdown';
+import OpenedDropdown from './static/OpenedDropdown';
+
+const BootstrapInput = withStyles((theme: Theme) =>
+ createStyles({
+ root: {
+ 'label + &': {
+ marginTop: theme.spacing(3),
+ },
+ },
+ input: {
+ borderRadius: 4,
+ position: 'relative',
+ backgroundColor: theme.palette.background.paper,
+ border: '1px solid #ced4da',
+ fontSize: 16,
+ padding: '10px 26px 10px 12px',
+ transition: theme.transitions.create(['border-color', 'box-shadow']),
+ fontFamily: 'Helvetica Neue',
+ '&:focus': {
+ background: theme.palette.background.paper,
+ borderRadius: 4,
+ },
+ },
+ }),
+)(InputBase);
+
+const useStyles = makeStyles((theme: Theme) =>
+ createStyles({
+ formControl: {
+ margin: theme.spacing(1),
+ minWidth: 315,
+ },
+ label: {
+ transform: 'initial',
+ fontWeight: 'bold',
+ fontSize: 14,
+ fontFamily: theme.typography.fontFamily,
+ color: theme.palette.text.primary,
+ '&.Mui-focused': {
+ color: theme.palette.text.primary,
+ },
+ },
+ }),
+);
+
+type Item = {
+ label: string;
+ value: string | number;
+};
+
+type Props = {
+ multiple?: boolean;
+ items: Item[];
+ label: string;
+};
+
+export const SelectComponent = (props: Props) => {
+ const { multiple, items, label } = props;
+ const classes = useStyles();
+ const [value, setValue] = useState('');
+ const [isOpen, setOpening] = useState(true);
+
+ const handleChange = (event: React.ChangeEvent<{ value: unknown }>) => {
+ setValue(event.target.value as string);
+ };
+
+ return (
+
+
+ {label}
+
+
+
+ );
+};
diff --git a/packages/core/src/components/Select/index.tsx b/packages/core/src/components/Select/index.tsx
new file mode 100644
index 0000000000..977ebc88eb
--- /dev/null
+++ b/packages/core/src/components/Select/index.tsx
@@ -0,0 +1,17 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+export { SelectComponent as Select } from './Select';
diff --git a/packages/core/src/components/Select/static/ClosedDropdown.tsx b/packages/core/src/components/Select/static/ClosedDropdown.tsx
new file mode 100644
index 0000000000..25ef5aaca5
--- /dev/null
+++ b/packages/core/src/components/Select/static/ClosedDropdown.tsx
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import React from 'react';
+import { SvgIcon, makeStyles, createStyles } from '@material-ui/core';
+
+const useStyles = makeStyles(() =>
+ createStyles({
+ icon: {
+ position: 'absolute',
+ right: '4px',
+ pointerEvents: "none"
+ },
+ }),
+);
+
+const ClosedDropdown = () => {
+ const classes = useStyles();
+ return (
+
+
+
+ );
+};
+
+export default ClosedDropdown;
diff --git a/packages/core/src/components/Select/static/OpenedDropdown.tsx b/packages/core/src/components/Select/static/OpenedDropdown.tsx
new file mode 100644
index 0000000000..b6205a6e44
--- /dev/null
+++ b/packages/core/src/components/Select/static/OpenedDropdown.tsx
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import React from 'react';
+import { SvgIcon, makeStyles, createStyles } from '@material-ui/core';
+
+const useStyles = makeStyles(() =>
+ createStyles({
+ icon: {
+ position: 'absolute',
+ right: '4px',
+ pointerEvents: 'none',
+ },
+ }),
+);
+
+const OpenedDropdown = () => {
+ const classes = useStyles();
+ return (
+
+
+
+ );
+};
+
+export default OpenedDropdown;