import { Form as FormikForm } from "formik"; import styled from "styled-components"; import { structureStyle, StructureProps } from "./system/unions"; export type ManagedFormProps = StructureProps; export const ManagedForm = styled(FormikForm)< React.PropsWithChildren >({}, ...structureStyle); ManagedForm.displayName = "ManagedForm";