svelte-craftcms-headless-formie
Version:
Svelte Package for using Craft CMS with the Formie Plugin in headless configuration
10 lines (9 loc) • 325 B
TypeScript
import type { HTMLAttributes } from 'svelte/elements';
type Props = HTMLAttributes<HTMLLegendElement | HTMLLabelElement> & {
tag?: 'label' | 'legend';
required?: boolean;
for?: string;
};
declare const Label: import("svelte").Component<Props, {}, "">;
type Label = ReturnType<typeof Label>;
export default Label;