/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime"; import { OdsThemeColorIntent } from "@ovhcloud/ods-theming"; import { OdsIconName, OdsIconSize } from "@ovhcloud/ods-core"; export namespace Components { interface OsdsIcon { /** * Icon ARIA name * @see OdsIconAttributes.ariaName */ "ariaName": string; /** * Icon color theme * @see OdsIconAttributes.color */ "color"?: OdsThemeColorIntent; /** * Icon if contrasted or not * @see OdsIconAttributes.contrasted */ "contrasted"?: boolean; /** * Icon if hoverabled or not * @see OdsIconAttributes.hoverable */ "hoverable"?: boolean; /** * Icon name * @see OdsIconAttributes.name */ "name"?: OdsIconName; /** * Icon size * @see OdsIconAttributes.size */ "size"?: OdsIconSize; } } declare global { interface HTMLOsdsIconElement extends Components.OsdsIcon, HTMLStencilElement { } var HTMLOsdsIconElement: { prototype: HTMLOsdsIconElement; new (): HTMLOsdsIconElement; }; interface HTMLElementTagNameMap { "osds-icon": HTMLOsdsIconElement; } } declare namespace LocalJSX { interface OsdsIcon { /** * Icon ARIA name * @see OdsIconAttributes.ariaName */ "ariaName"?: string; /** * Icon color theme * @see OdsIconAttributes.color */ "color"?: OdsThemeColorIntent; /** * Icon if contrasted or not * @see OdsIconAttributes.contrasted */ "contrasted"?: boolean; /** * Icon if hoverabled or not * @see OdsIconAttributes.hoverable */ "hoverable"?: boolean; /** * Icon name * @see OdsIconAttributes.name */ "name"?: OdsIconName; /** * Icon size * @see OdsIconAttributes.size */ "size"?: OdsIconSize; } interface IntrinsicElements { "osds-icon": OsdsIcon; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "osds-icon": LocalJSX.OsdsIcon & JSXBase.HTMLAttributes; } } }