import * as React from 'react'; import { ReactNode } from 'react'; import { SpaceProps } from 'styled-system'; import Box from '../Box'; import Section, { SectionVariants } from '../Section'; const LegacySection: React.FC<{ variant?: SectionVariants; anchor?: string; narrow?: boolean; wide?: boolean; innerGap?: SpaceProps['py']; children?: ReactNode; }> = ({ variant, anchor, narrow, wide, innerGap, children }) => { return (
{children}
); }; export default LegacySection;