import { html } from "lit"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "./../../utils"; @flowElement("f-form-field") export class FFormField extends FRoot { static styles = [...FDiv.styles]; render() { /** * Final html to render */ return html` `; } } /** * Required for typescript */ declare global { interface HTMLElementTagNameMap { "f-form-field": FFormField; } }