finpro
Version:
34 lines • 960 B
TypeScript
import { CSSResultGroup } from 'lit';
import FinproElement from '../../internals/finpro-element';
export declare type Item = {
title: string;
href: string;
styling: string;
};
/**
* @tag fp-breadcrumbs
* @summary Finpro Breadcrumbs component
*/
export declare type BreadcrumbsSize = '5xs' | '4xs' | '3xs' | '2xs' | 'xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | 'xxl' | '2xxl' | '3xxl' | '4xxl';
export default class FpBreadcrumbs extends FinproElement {
static get styles(): CSSResultGroup;
/**
* Sets the breadcrumbs list
*/
list: Item[];
/**
* Sets the breadcrumbs separator
*/
separator?: string;
/**
* Sets the breadcrumbs size
*/
size?: BreadcrumbsSize;
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'fp-breadcrumbs': FpBreadcrumbs;
}
}
//# sourceMappingURL=fp-breadcrumbs.d.ts.map