import { cn } from '@/lib/utils'; import React from 'react'; import { section } from './Section.styles'; import { SectionProps } from './Section.types'; export const Section: React.FC = ({ children, className = '', ...props }) => { return (
{children}
); }; export default Section;