import React, { ReactNode } from 'react'; /** VwcFab * For more info on this Vivid element please visit https://vivid.deno.dev/components/fab * @param {FabConnotation | undefined} connotation - The connotation the fab should have. **attribute** `connotation` * @param {FABSize | undefined} size - The size the FAB should have. **attribute** `size` * @param {string | undefined} label - Indicates the fab's label. **attribute** `label` * @param {boolean} iconTrailing - Indicates the icon affix alignment. **attribute** `icon-trailing` * @param {string | undefined} icon - A decorative icon the custom element should have. **attribute** `icon` * @param {boolean} autofocus - Determines if the element should receive document focus on page load. **attribute** `autofocus` * @param {string} formId - The id of a form to associate the element to. **attribute** `form` * @param {string} formaction - See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button |