blob: fc377db795bfdd136b8fbb31245303a3a534c085 [file] [log] [blame]
idillon3470d072022-11-22 15:22:34 -05001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
18
19import { MenuItem, MenuItemProps, Select, SelectProps } from '@mui/material';
20
21export interface CustomSelectOption {
22 label: string;
23 value: MenuItemProps['value'];
24}
25
26export interface CustomSelectProps extends Omit<SelectProps, 'label'> {
27 value: CustomSelectOption['value'];
28 options: CustomSelectOption[];
29 onChange: SelectProps['onChange'];
30}
31
32const CustomSelect = ({ value, options, onChange }: CustomSelectProps) => {
33 return (
34 <Select onChange={onChange} value={value}>
35 {options.map((option) => (
36 <MenuItem key={option.label} value={option.value}>
37 {option.label}
38 </MenuItem>
39 ))}
40 </Select>
41 );
42};
43export { CustomSelect };