@oslokommune/punkt-elements
Version:
Komponentbiblioteket til Punkt, et designsystem laget av Oslo Origo
15 lines (14 loc) • 487 B
TypeScript
import { PktElement } from '../../base-elements/element';
export interface IPktBackLink {
href?: string;
text?: string;
ariaLabel?: string;
}
export declare class PktBackLink extends PktElement<IPktBackLink> implements IPktBackLink {
href: string;
text: string;
ariaLabel: string;
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
render(): import('lit-html').TemplateResult<1>;
}
export default PktBackLink;