ksylvest/tights

View on GitHub
src/select.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import type { ComponentProps, FC } from "react";

export const Select: FC<ComponentProps<"select">> = (props) => (
  <div className="select">
    <select {...props} />
  </div>
);