UNPKG

event-services

Version:

Collection of hooks, components, generics (buttons, containers, styles, tools) for creating web applications for guest management for any type of events: weddings, parties, graduations that require guest confirmation and display useful information to gues

10 lines (9 loc) 291 B
/// <reference types="react" /> interface SectionI { borderRadius?: boolean; bgNone?: boolean; className?: string; children: React.ReactNode; } export declare const Section: ({ children, className, ...props }: SectionI) => import("react/jsx-runtime").JSX.Element; export {};