finpro
Version:
28 lines • 616 B
TypeScript
import { CSSResultGroup, TemplateResult } from 'lit';
import FinproElement from '../../internals/finpro-element';
/**
* @tag fp-anchor
* @summary Finpro Anchor component
*/
export default class FpAnchor extends FinproElement {
static get styles(): CSSResultGroup;
/**
* Sets the anchor label
*/
label: '';
/**
* Sets the anchor href
*/
href: '';
/**
* Sets the anchor target
*/
target: '';
render(): TemplateResult;
}
declare global {
interface HTMLElementTagNameMap {
'fp-anchor': FpAnchor;
}
}
//# sourceMappingURL=fp-anchor.d.ts.map