Files
twenty/packages/twenty-front/src/modules/ui/field/display/components/SelectDisplay.tsx
T
Baptiste Devessier 5eeee6a7ed Add readonly mode to form fields - 2nd part (#9582)
In this PR, I implemented or confirmed that the read-only mode works for
the following fields:

- [x] FormUuidFieldInput
- [x] FormRawJsonFieldInput
- [x] FormPhoneFieldInput
- [x] FormEmailsFieldInput
- [x] FormLinksFieldInput
- [x] FormAddressFieldInput
- [x] FormFullNameFieldInput
2025-01-14 11:34:26 +01:00

26 lines
453 B
TypeScript

import { IconComponent, Tag, ThemeColor } from 'twenty-ui';
type SelectDisplayProps = {
color: ThemeColor | 'transparent';
label: string;
Icon?: IconComponent;
preventPadding?: boolean;
};
export const SelectDisplay = ({
color,
label,
Icon,
preventPadding,
}: SelectDisplayProps) => {
return (
<Tag
preventShrink
color={color}
text={label}
Icon={Icon}
preventPadding={preventPadding}
/>
);
};