// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 import { InputHTMLAttributes } from 'react'; import * as S from './Select.styled'; interface IProps extends InputHTMLAttributes { children: React.ReactNode; } const Select = ({ children, ...props }: IProps) => { return ( {children} ); }; export default Select;