import { Formik } from "formik"; import styled from "styled-components"; import { compose } from "styled-system"; import { CommonStyleProps, commonStyle } from "./system/unions"; export type FormControllerProps = CommonStyleProps; export const FormController = styled(Formik)< React.PropsWithChildren >` ${compose(...commonStyle)} `; FormController.displayName = "FormController";