15 lines
367 B
TypeScript
15 lines
367 B
TypeScript
import { styled } from '@linaria/react';
|
|
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
|
|
|
const StyledFormContainer = styled.div`
|
|
padding-inline: ${themeCssVariables.spacing[1]};
|
|
`;
|
|
|
|
export const SidePanelGroupFormContainer = ({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) => {
|
|
return <StyledFormContainer>{children}</StyledFormContainer>;
|
|
};
|