48 | {components.map((Component, index) => (
49 | // biome-ignore lint/suspicious/noArrayIndexKey: This is a static list
50 |
51 |
54 | {index < components.length - 1 && }
55 |
56 | ))}
57 |
58 | );
59 | }
60 |
--------------------------------------------------------------------------------
/apps/desktop/src/components/ui/checkbox.tsx:
--------------------------------------------------------------------------------
1 | import { forwardRef } from "react";
2 | import * as StyledCheckbox from "./styled/checkbox";
3 |
4 | export interface CheckboxProps extends StyledCheckbox.RootProps {}
5 |
6 | export const Checkbox = forwardRef