import React, { FC } from 'react' import styled, { useTheme } from 'styled-components' import { Theme, useColor } from '../../theming' import { SelectProps } from '../../types/Select' const StyledSelect = styled.div`` const Select: FC = ({ children, ...props }) => { return ( ) } export default Select