Files
calendar/packages/app-store/_components/AppSettings.tsx
T
d9a867bbde Change Zap automation UI issues (#5355)
* changed styles for Zap automation ui to match figma

* Increased margintop value

* increase margintop value to mt-4

* fixed some styling issues

* fixed issue with buttons being at different heights

* changed vertical positioning of text and increased min height

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
2022-11-06 16:09:10 +00:00

14 lines
406 B
TypeScript

import { AppSettingsComponentsMap } from "@calcom/app-store/apps.browser.generated";
import { DynamicComponent } from "./DynamicComponent";
export const AppSettings = (props: { slug: string }) => {
return (
<DynamicComponent<typeof AppSettingsComponentsMap>
wrapperClassName="border-t border-gray-200 bg-gray-100"
componentMap={AppSettingsComponentsMap}
{...props}
/>
);
};