import { styled } from '@linaria/react'; import type { IconComponent } from 'twenty-ui/display'; import { themeCssVariables } from 'twenty-ui/theme-constants'; import { CancelButton } from './CancelButton'; import { SaveButton } from './SaveButton'; const StyledContainer = styled.div` align-items: center; display: flex; gap: ${themeCssVariables.spacing[1]}; `; type SaveAndCancelButtonsProps = { onSave?: () => void; isLoading?: boolean; onCancel?: () => void; isSaveDisabled?: boolean; isCancelDisabled?: boolean; inverted?: boolean; saveIcon?: IconComponent; }; export const SaveAndCancelButtons = ({ onSave, isLoading, onCancel, isSaveDisabled, isCancelDisabled, inverted = false, saveIcon, }: SaveAndCancelButtonsProps) => { return ( ); };