/* 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 { Classification, ExtendedPlacement, Status, StatusTags } from "./common/commonTypes.module"; import { LogRow } from "./components/rux-log/rux-log.model"; import { RangeItem } from "./components/rux-monitoring-progress-icon/rux-monitoring-progress-icon"; import { SegmentedButton } from "./components/rux-segmented-button/rux-segmented-button.model"; import { Status as Status1 } from "./components"; import { ToastStackPosition } from "./components/rux-toast-stack/rux-toast-stack"; export { Classification, ExtendedPlacement, Status, StatusTags } from "./common/commonTypes.module"; export { LogRow } from "./components/rux-log/rux-log.model"; export { RangeItem } from "./components/rux-monitoring-progress-icon/rux-monitoring-progress-icon"; export { SegmentedButton } from "./components/rux-segmented-button/rux-segmented-button.model"; export { Status as Status1 } from "./components"; export { ToastStackPosition } from "./components/rux-toast-stack/rux-toast-stack"; export namespace Components { interface RuxAccordion { /** * If present, sets a disabled state on the accordion, indicating that no part of it can be manipulated by user action. * @default false */ "disabled": boolean; /** * ***** toggles disallow muiltiple - default false ******** * @default false */ "disallowMultiple": boolean; } interface RuxAccordionItem { /** * If present, sets a disabled state on this accordion item, indicating it cannot be selected by user action. * @default false */ "disabled": boolean; /** * If present, sets the initial state on this accordion item to open, displaying the accordion content. * @default false */ "expanded": boolean; } interface RuxBreadcrumb { } interface RuxBreadcrumbItem { /** * The href property of the breadcrumb item link */ "href"?: string; } interface RuxButton { /** * Changes button style from solid to borderless by setting the rux-button--borderless class * @default false */ "borderless": boolean; /** * Toggles disabled attribute on the button * @default false */ "disabled": boolean; /** * For a [button style guide, see the Button section in Astro UXDS Guidelines](https://astrouxds.com/components/button) Displays an Astro icon matching this string. For a [full list of available icons, see the Icons section in Astro UXDS Guidelines](https://astrouxds.com/ui-components/icons-and-symbols) */ "icon"?: string; /** * Hides slotted text from the button by setting rux-button--icon-only class * @default false */ "iconOnly": boolean; /** * Changes button style from solid to secondary by setting the rux-button--secondary class * @default false */ "secondary": boolean; /** * Changes size of a button from medium to small or large by setting sizing classes rux-button--small rux-button--large */ "size"?: 'small' | 'medium' | 'large'; /** * The button type. Use 'submit' to submit native form data. * @default 'button' */ "type": 'submit' | 'button'; } /** * @deprecated Button Group is deprecated and will be removed in a next major release. * Instead, you should use `flex` or `grid` in combination with our spacing design tokens. */ interface RuxButtonGroup { /** * The horizontal alignment of buttons within the group * @default 'left' */ "hAlign": 'left' | 'center' | 'right'; } interface RuxCard { } interface RuxCheckbox { /** * Toggles checked state of a checkbox * @default false */ "checked": boolean; /** * Disables the checkbox via HTML disabled attribute. Checkbox takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled": boolean; /** * The help or explanation text */ "helpText"?: string; /** * Toggles indeterminate state of a checkbox. The indeterminate property does not exist in HTML, but can be set in JS. [HTML Checkbox & Indeterminate State](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#indeterminate) * @default false */ "indeterminate": boolean; /** * The checkbox label text. For HTML content, use the default slot instead. */ "label"?: string; /** * The checkbox name * @default '' */ "name": string; /** * The checkbox value * @default '' */ "value": string; } interface RuxCheckboxGroup { /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Checkbox Group as invalid. * @default false */ "invalid": boolean; /** * The label of the checkbox group. For HTML content, use the `label` slot instead. */ "label"?: string; /** * Marks that a selection from the checkbox group is requried. * @default false */ "required": boolean; } interface RuxClassificationMarking { /** * Defines which classification marking will be displayed. * @default 'unclassified' */ "classification": Classification; /** * Allows additional text labels to be added to the marking */ "label"?: string; /** * Declares the marking as a `tag` rather than the default banner style * @default false */ "tag": boolean; } interface RuxClock { /** * When supplied with a valid [date string or value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#syntax) displays a timestamp labeled "AOS" next to the standard clock. */ "aos"?: string; /** * When supplied with a valid [date string or value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#syntax), sets the time and date of the clock. */ "dateIn"?: string; /** * Hides the day of the year. * @default false */ "hideDate": boolean; /** * Hides all of the labels. * @default false */ "hideLabels": boolean; /** * Hides the timezone in the main 24-hour clock. Timezone does not display on AOS/LOS. * @default false */ "hideTimezone": boolean; /** * When supplied with a valid [date string or value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#syntax), displays a timestamp labeled "LOS" next to the standard clock. */ "los"?: string; /** * Applies a smaller clock style. * @default false */ "small": boolean; /** * Prevents clock from ticking. Use with `date-in` for full control over the displayed time * @default false */ "static": boolean; /** * Accepts the [IANA timezone string format](https://www.iana.org/time-zones) such as `'America/Los_Angeles'` or any single-character designation for a [military timezones](https://en.wikipedia.org/wiki/List_of_military_time_zones) (`'A'` through `'Z'`, excluding `'J'`), both case-insensitive. If no value for timezone is provided, the clock will use `'UTC'`. See [`toLocaleString()` on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString#Parameters) for more details. * @default 'UTC' */ "timezone": string; } interface RuxContainer { } interface RuxDatetime { /** * The date time to be formatted * @default new Date() */ "date": Date | string; /** * Format options for day */ "day"?: 'numeric' | '2-digit'; /** * Format options for era */ "era"?: 'narrow' | 'short' | 'long'; /** * Format options for hour */ "hour"?: 'numeric' | '2-digit'; /** * Display date in 12 hour time. * @default false */ "hour12": boolean; /** * The locale * @default 'default' */ "locale": string; /** * Format options for minute */ "minute"?: 'numeric' | '2-digit'; /** * Format options for month */ "month"?: 'numeric' | '2-digit' | 'narrow' | 'short' | 'long'; /** * Format options for second */ "second"?: 'numeric' | '2-digit'; /** * Format options for Timezone */ "timeZone"?: string; /** * Format options for Timezone name */ "timeZoneName"?: 'short' | 'long'; /** * Format options for weekday */ "weekday"?: 'narrow' | 'short' | 'long'; /** * Format options for year */ "year"?: 'numeric' | '2-digit'; } interface RuxDialog { /** * Allows dialog to close when clicking off it * @default false */ "clickToClose": boolean; /** * Text for confirmation button * @default 'Confirm' */ "confirmText": string; /** * Text for close button * @default 'Cancel' */ "denyText": string; /** * Dialog header title */ "header"?: string; /** * Closes the dialog */ "hide": () => Promise; /** * Dialog body message */ "message"?: string; /** * Shows and hides dialog * @default false */ "open": boolean; /** * Opens the dialog */ "show": () => Promise; /** * Toggles the dialog's open prop. */ "toggle": () => Promise; } interface RuxGlobalStatusBar { /** * Sets the domain of the application to be displayed in the app-meta element */ "appDomain"?: string; /** * Sets the name of the application to be displayed in the app-meta element */ "appName"?: string; /** * Declares what text will render and whether the app-state component will be shown in the app-meta slot * @default '' */ "appState"?: string; /** * Declares the color of the the app-state component background * @default 'tag1' */ "appStateColor"?: 'tag1' | 'tag2' | 'tag3' | 'tag4'; /** * Sets the version of the application to be displayed in the app-meta element */ "appVersion"?: string; /** * Reduces the height of the global status bar * @default false */ "compact": boolean; /** * Declares whether the menu-icon will be shown in the left-side slot * @default false */ "includeIcon": boolean; /** * Sets the icon to be displayed in the default rux-icon component * @default 'apps' */ "menuIcon": string; /** * Declares what text will render and whether the username component will be shown in the app-meta slot * @default '' */ "username"?: string; } interface RuxIcon { /** * The icon name */ "icon": string; /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'normal' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIcon360 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIcon3dRotation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIcon4k { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAcUnit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessAlarms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessTime { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessibility { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessibilityNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessible { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessibleForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountBalance { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountBalanceWallet { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAdb { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddAPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddAlarm { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddAlert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddPhotoAlternate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddShoppingCart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddToHomeScreen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddToPhotos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddToQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAdjust { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatFlat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatFlatAngled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatIndividualSuite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatLegroomExtra { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatLegroomNormal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatLegroomReduced { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatReclineExtra { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatReclineNormal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirplanemodeActive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirplanemodeInactive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirplay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirportShuttle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarm { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarmAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarmOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarmOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlbum { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAllInbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAllInclusive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAllOut { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlternateEmail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAltitude { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAndroid { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAnnouncement { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntenna { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntennaOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntennaReceive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntennaTransmit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconApps { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArchive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowBack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowBackIos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDownward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDropDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDropDownCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDropUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowForwardIos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowRightAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowUpward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArtTrack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAspectRatio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssessment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentFind { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentLate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentReturn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentReturned { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentTurnedIn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssistant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssistantPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAttachFile { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAttachMoney { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAttachment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAudiotrack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAutorenew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAvTimer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBackspace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBackup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBallot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBarChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery20 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery50 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery60 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery80 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery90 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryAlert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging20 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging50 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging60 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging80 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging90 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryChargingFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryStd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryUnknown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBeachAccess { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBeenhere { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetooth { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothAudio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothConnected { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothSearching { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurCircular { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurLinear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBook { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBookmark { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBookmarkBorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBookmarks { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderBottom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderColor { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderHorizontal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderInner { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderOuter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderStyle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderTop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderVertical { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrandingWatermark { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness4 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness6 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness7 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessAuto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessHigh { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessLow { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessMedium { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrokenImage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrush { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBubbleChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBugReport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBuild { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBurstMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBusiness { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBusinessCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCached { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCake { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCalendarToday { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCalendarViewDay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallEnd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMade { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMerge { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMissed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMissedOutgoing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallReceived { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallSplit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallToAction { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraEnhance { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraFront { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraRear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraRoll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCancel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCancelPresentation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCardGiftcard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCardMembership { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCardTravel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCasino { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCast { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCastConnected { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCastForEducation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCategory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCellWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCenterFocusStrong { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCenterFocusWeak { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChangeHistory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChatBubble { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChatBubbleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckBoxOutlineBlank { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChevronLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChevronRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChildCare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChildFriendly { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChromeReaderMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClass { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClearAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClose { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClosedCaption { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloud { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudDone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudDownload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudUpload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCollections { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCollectionsBookmark { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconColorLens { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconColorize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCommute { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCompare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCompareArrows { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCompassCalibration { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconComputer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconConfirmationNumber { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContactMail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContactPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContactSupport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContacts { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconControlCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconControlPoint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconControlPointDuplicate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCopyright { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCreate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCreateNewFolder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCreditCard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop169 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop32 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop54 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop75 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropDin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropFree { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropOriginal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropRotate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropSquare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDashboard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDataUsage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDateRange { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDehaze { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDelete { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeleteForever { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeleteOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeleteSweep { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDepartureBoard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDescription { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDesktopAccessDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDesktopMac { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDesktopWindows { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDetails { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeveloperBoard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeveloperMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeviceHub { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeviceUnknown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDevices { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDevicesOther { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDialerSip { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDialpad { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirections { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsBike { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsBoat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsBus { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsCar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsRailway { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsRun { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsSubway { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsTransit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsWalk { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDiscFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDns { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDomain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDomainDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDoneAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDoneOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDonutLarge { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDonutSmall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDrafts { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDragHandle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDragIndicator { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDriveEta { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDuo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDvr { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEdit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEditAttributes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEditLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEject { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEmail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEnhancedEncryption { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEqualizer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEquipment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconError { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconErrorOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEuroSymbol { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEvStation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEvent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEventAvailable { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEventBusy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEventNote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExitToApp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExpandLess { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExpandMore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExplicit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExplore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExploreOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposure { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposureNeg1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposureNeg2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposurePlus1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposurePlus2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposureZero { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExtension { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFastForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFastRewind { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFastfood { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFavorite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFavoriteBorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFeaturedPlayList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFeaturedVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFeedback { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberDvr { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberManualRecord { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberPin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberSmartRecord { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFileCopy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter4 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter6 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter7 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter8 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter9 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter9Plus { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterBAndW { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterCenterFocus { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterDrama { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterFrames { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterHdr { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterTiltShift { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterVintage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFindInPage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFindReplace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFingerprint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFirstPage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFitnessCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlag { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlashAuto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlashOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlashOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlightLand { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlightTakeoff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlip { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlipToBack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlipToFront { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolderOpen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolderShared { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolderSpecial { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFontDownload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignJustify { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatBold { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatColorFill { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatColorReset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatColorText { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatIndentDecrease { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatIndentIncrease { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatItalic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatLineSpacing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatListBulleted { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatListNumbered { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatListNumberedRtl { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatPaint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatQuote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatShapes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatSize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatStrikethrough { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatTextdirectionLToR { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatTextdirectionRToL { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatUnderlined { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForum { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward10 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFreeBreakfast { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFullscreen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFullscreenExit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFunctions { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGTranslate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGamepad { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGames { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGavel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGesture { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGetApp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGif { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGolfCourse { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGpsFixed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGpsNotFixed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGpsOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGrade { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGradient { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGrain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGraphicEq { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGridOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGridOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGroup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGroupAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGroupWork { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHardware { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrStrong { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrWeak { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHeadset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHeadsetMic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHealing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHearing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHelp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHelpOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHighQuality { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHighlight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHighlightOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHistory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHome { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHorizontalSplit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHotTub { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHotel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHourglassEmpty { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHourglassFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHowToReg { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHowToVote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHttp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHttps { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImageAspectRatio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImageSearch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImportContacts { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImportExport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImportantDevices { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconIndeterminateCheckBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInfo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInput { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertChartOutlined { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertDriveFile { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertEmoticon { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertInvitation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertLink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInvertColors { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInvertColorsOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconIso { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardBackspace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardCapslock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardHide { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardReturn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardTab { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardVoice { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKitchen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLabel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLabelImportant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLabelOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLanguage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptopChromebook { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptopMac { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptopWindows { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLastPage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaunch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLayers { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLayersClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLeakAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLeakRemove { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLens { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLibraryAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLibraryBooks { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLibraryMusic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLineStyle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLineWeight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLinearScale { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLinkOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLinkedCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconListAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLiveHelp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLiveTv { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalActivity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalAirport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalAtm { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalBar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalCafe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalCarWash { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalConvenienceStore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalDining { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalDrink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalGasStation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalGroceryStore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalHospital { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalHotel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalLaundryService { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalLibrary { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalMall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalMovies { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalOffer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalParking { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPharmacy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPlay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPostOffice { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPrintshop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalSee { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalShipping { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalTaxi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationCity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationSearching { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLockOpen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks4 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks6 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLoop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLoupe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLowPriority { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLoyalty { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMailOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMap { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMarkunread { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMarkunreadMailbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMaximize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMeetingRoom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMemory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMenu { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMergeType { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMessage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMicNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMicOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMinimize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMissedVideoCall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMission { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMobileFriendly { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMobileOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMobileScreenShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconModeComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMonetizationOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoney { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoneyOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMonochromePhotos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMood { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoodBad { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoreHoriz { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoreVert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMotorcycle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMouse { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoveToInbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMovie { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMovieCreation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMovieFilter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMultilineChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMusicNote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMusicOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMusicVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMyLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNature { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNaturePeople { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNavigateBefore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNavigateNext { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNavigation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNearMe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetcom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkCell { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkCheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkLocked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNewReleases { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNextWeek { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNfc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoEncryption { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoMeetingRoom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoSim { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotInterested { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotListedLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoteAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationImportant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotifications { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsActive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsPaused { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOfflineBolt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOfflinePin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOndemandVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpacity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpenInBrowser { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpenInNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpenWith { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOutlinedFlag { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPages { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPageview { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPalette { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanTool { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanorama { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaFishEye { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaHorizontal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaVertical { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaWideAngle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPartyMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPause { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPauseCircleFilled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPauseCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPausePresentation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPayload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPayment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPeopleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermCameraMic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermContactCalendar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermDataSetting { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermDeviceInformation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermIdentity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermMedia { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermPhoneMsg { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermScanWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPerson { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonAddDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonPin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonPinCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonalVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPets { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneAndroid { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneBluetoothSpeaker { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneCallback { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneForwarded { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneInTalk { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneIphone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneLocked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneMissed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonePaused { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkErase { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkRing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkSetup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoAlbum { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoFilter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoLibrary { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoSizeSelectActual { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoSizeSelectLarge { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoSizeSelectSmall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPictureAsPdf { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPictureInPicture { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPictureInPictureAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPieChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPinDrop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayArrow { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayCircleFilled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayCircleFilledWhite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayForWork { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlaylistAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlaylistAddCheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlaylistPlay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlusOne { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPoll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPool { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPortableWifiOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPowerInput { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPowerOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPowerSettingsNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPregnantWoman { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPresentToAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPrint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPrintDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPriorityHigh { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconProcessor { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconProcessorAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPropulsionPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPublic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPublish { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueryBuilder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQuestionAnswer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueueMusic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueuePlayNext { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRadio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRadioButtonChecked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRadioButtonUnchecked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRateReview { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReceipt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRecentActors { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRecordVoiceOver { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRedeem { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRedo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRefresh { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRelease { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemove { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveFromQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveRedEye { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveShoppingCart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRepeat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRepeatOne { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay10 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReply { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplyAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReportOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReportProblem { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestaurant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestaurantMenu { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestoreFromTrash { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestorePage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRingVolume { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRoom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRoomService { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRotate90DegreesCc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRotateLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRotateRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRoundedCorner { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRouter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRowing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRssFeed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRvHookup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatellite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatelliteOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatelliteReceive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatelliteTransmit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSave { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSaveAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScanner { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScatterPlot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSchedule { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSchool { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenLockLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenLockPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenLockRotation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenRotation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSdCard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSdStorage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSearch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSeat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSecurity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSelectAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSend { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentDissatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentSatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentSatisfiedAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentVeryDissatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentVerySatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSetPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettings { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsApplications { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsBackupRestore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsBluetooth { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsBrightness { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsCell { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsEthernet { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputAntenna { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputComponent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputComposite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputHdmi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputSvideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsOverscan { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsRemote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsSystemDaydream { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsVoice { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShopTwo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShoppingBasket { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShoppingCart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShortText { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShowChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShuffle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShutterSpeed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular0Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular1Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular2Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular3Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular4Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet0Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet1Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet2Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet3Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet4Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularNoSim { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularNull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi0Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi1Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi1BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi2Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi2BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi3Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi3BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi4Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi4BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifiOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSimCard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSkipNext { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSkipPrevious { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSlideshow { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSlowMotionVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmartphone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmokeFree { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmokingRooms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmsFailed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSnooze { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSolar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSort { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSortByAlpha { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpa { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpaceBar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeaker { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerGroup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerNotes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerNotesOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpellcheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStarBorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStarHalf { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStarRate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStars { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayCurrentLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayCurrentPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayPrimaryLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayPrimaryPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStopScreenShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStorage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStoreMallDirectory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStraighten { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStreetview { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStrikethroughS { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStyle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubdirectoryArrowLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubdirectoryArrowRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubject { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubscriptions { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubtitles { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubway { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSupervisedUserCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSupervisorAccount { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSurroundSound { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapCalls { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapHoriz { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapHorizontalCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapVert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapVerticalCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwitchCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwitchVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSync { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSyncDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSyncProblem { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSystemUpdate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTab { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTabUnselected { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTableChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTablet { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTabletAndroid { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTabletMac { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTagFaces { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTapAndPlay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTerrain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextFields { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextFormat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextRotateUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextRotateVertical { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextRotationNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextsms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTexture { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTheaters { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThermal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbDownAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbUpAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbsUpDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimeToLeave { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimelapse { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimeline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimer10 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimer3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimerOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTitle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToday { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToggleOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToggleOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTonality { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTouchApp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToys { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrackChanges { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTraffic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTram { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTransferWithinAStation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTransform { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTransitEnterexit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTranslate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrendingDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrendingFlat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrendingUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTripOrigin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTune { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTurnedIn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTurnedInNot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTv { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTvOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnarchive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUndo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnfoldLess { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnfoldMore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnsubscribe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUpdate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUsb { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerifiedUser { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalAlignBottom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalAlignCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalAlignTop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalSplit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVibration { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideoCall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideoLabel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideoLibrary { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideocam { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideocamOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideogameAsset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewAgenda { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewArray { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewCarousel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewColumn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewComfy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewCompact { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewDay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewHeadline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewModule { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewQuilt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewStream { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewWeek { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVignette { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVisibility { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVisibilityOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVoiceChat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVoiceOverOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVoicemail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeMute { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVpnKey { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVpnLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWallpaper { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWarning { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWatch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWatchLater { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWaves { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbAuto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbCloudy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbIncandescent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbIridescent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbSunny { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWeb { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWebAsset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWeekend { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWhatshot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWhereToVote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWidgets { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifiLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifiOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifiTethering { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWork { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWorkOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWorkOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWrapText { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconYoutubeSearchedFor { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomIn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomInMap { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomOut { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomOutMap { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIndeterminateProgress { } interface RuxInput { /** * The inputs autocomplete attribute. In password inputs, this attribute gets set to 'off'. * @default 'off' */ "autocomplete": string; /** * Disables the button via HTML disabled attribute. Button takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled": boolean; /** * The validation error text */ "errorText"?: string; /** * Returns the native input element used in the shadow dom. */ "getInput": () => Promise; /** * The help or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Input Field as invalid. * @default false */ "invalid": boolean; /** * The input label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The input max attribute */ "max"?: string; /** * The input maxlength attribute */ "maxlength"?: string; /** * The input min attribute */ "min"?: string; /** * The input minlength attribute */ "minlength"?: string; /** * The input name * @default '' */ "name": string; /** * The input placeholder text */ "placeholder"?: string; /** * The inputs readonly attribute * @default false */ "readonly": boolean; /** * Sets the input as required * @default false */ "required": boolean; /** * Sets element as focused */ "setFocus": (options?: FocusOptions) => Promise; /** * Control the padding around the input field * @default 'medium' */ "size": 'small' | 'medium' | 'large'; /** * The input's spellcheck attribute * @default false */ "spellcheck": boolean; /** * The input step attribute */ "step"?: string; /** * The input type * @default 'text' */ "type": | 'text' | 'number' | 'email' | 'url' | 'search' | 'password' | 'date' | 'datetime-local' | 'time' | 'tel'; /** * The input value * @default '' */ "value": string; } /** * A Log is a tabular representation of application events and may include username, priority, equipment type, signal type, etc. As part of the [Notification System](https://www.astrouxds.com/design-guidelines/notifications), Logs provide sorting and filtering function for examining events. */ interface RuxLog { /** * An array of objects to display as log * @default [] */ "data": LogRow[]; /** * A string to filter the array to return only the children whose `message` property contains a case-insensitive substring match. */ "filter"?: string; /** * Accepts [IANA timezone string format](https://www.iana.org/time-zones) such as `America/Los_Angeles`. Default timezone is `UTC`. See [`toLocaleString()` on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString#Parameters) for more details. * @default 'UTC' */ "timezone": string; } interface RuxMenu { } interface RuxMenuItem { /** * sets the menu item as disabled * @default false */ "disabled": boolean; /** * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want). */ "download": string | undefined; /** * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered. */ "href": string | undefined; /** * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types). */ "rel": string | undefined; /** * sets the menu item as selected * @default false */ "selected": boolean; /** * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`. */ "target": string | undefined; /** * the value returned when item is selected. */ "value"?: string; } interface RuxMenuItemDivider { } interface RuxMonitoringIcon { /** * Displays an Astro icon matching this string. For a [full list of available icons, see the Icons section in Astro UXDS Guidelines](https://astrouxds.com/ui-components/icons-and-symbols) * @default 'antenna-transmit' */ "icon": string; /** * Displays a label below the icon */ "label": string; /** * If provided and greater than `0`, displays an outlined number badge at the bottom right of the icon. Numbers above `9999` are abbreviated to `'10K'` or `'100K'` for numbers in the thousands, `'1.5M'` for millions, `'1.5B'` for billions, and uses `'∞'` for one trillion or higher. * @default 0 */ "notifications": number; /** * The size of a chosen Astro icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default '2.5rem' */ "size": string; /** * Styles the icon according to the Astro Status colors. Valid options are the Astro statuses `critical`, `serious`, `caution`, `normal`, `standby`, and `off`. * @default 'normal' */ "status": Status; /** * Displays a smaller label underneath the icon label */ "sublabel"?: string; } interface RuxMonitoringProgressIcon { /** * Displays a label below the icon */ "label"?: string; /** * Sets the maximum value for the progress range. When progress is this number, it reads 100%. When it is halfway between min and max, it will read 50%. * @default 100 */ "max": number; /** * Sets the minimum value for the progress range. When progress is this number, it reads 0%. When it is halfway between min and max, it will read 50%. * @default 0 */ "min": number; /** * If provided and greater than `0`, displays an outlined number badge at the bottom right of the icon. Numbers above `9999` are abbreviated to `'10K'` or `'100K'` for numbers in the thousands, `'1.5M'` for millions, `'1.5B'` for billions, and `'∞'` for one trillion or higher. */ "notifications"?: number; /** * Displays this value as a percentage of where it lies between min and max in the center of the donut graph and styles a proportional segment of the graph. Progress can be positive or negative (the later useful for countdowns). The progress value must exist within the thresholds specified in the range property below, and must be an integer. If a non-integer value is passed in, progress will default to 0. If progress ever becomes less than min or greater than max, it will be set to equal min or max respectively. * @default 0 */ "progress": number; /** * Items in this Array define thresholds for changing the status style of the progress icon. For each item in the Array, the icon will be styled with the given status while the progress value is less than or equal to the Array item’s threshold and greater than the next smallest item‘s threshold. Both progress and the Array items’ threshold values can be positive or negative. If no min is specified, the component assumes the Array's first status threshold begins at 0. */ "range": Array; /** * Displays a smaller label underneath the icon label */ "sublabel"?: string; } interface RuxNotification { /** * If provided, the banner will automatically close after this amount of time. Accepts value either in milliseconds or seconds (which will be converted to milliseconds internally), between `2000` and `10000`, or `2` and `10`, respectively. Any number provided outside of the `2000`-`10000` range will be ignored in favor of the default 2000ms delay.
If `closeAfter` is not passed or if it is given an undefined or `null` value, the banner will stay open until the user closes it. */ "closeAfter"?: number; /** * Prevents the user from dismissing the notification. Hides the `actions` slot. * @default false */ "hideClose": boolean; /** * Message for the notification banner. * @default '' */ "message": string; /** * Set to true to display the Banner and begin countdown to close (if a close-after Number value is provided). * @default false */ "open": boolean; /** * Changes the size of the banner to a small variant. * @default false */ "small": boolean; /** * The background color. Possible values include 'off', 'standby', 'normal', 'caution', 'serious' and 'critical'. See [Astro UXDS Status System](https://astrouxds.com/patterns/status-system/). */ "status"?: Status; } /** * This component should be used exclusively with RuxSelect. * It's main function is to broadcast to RuxSelect when the value property changes. * RuxSelect can only listen for slot change, which won't fire in the scenario where there * might be 2 options and only their values change. Because the nodes themselves aren't added or removed, * onSlotchange doesn't fire. */ interface RuxOption { /** * Sets the option as disabled * @default false */ "disabled": boolean; /** * The option label */ "label": string; /** * The option value */ "value": string; } interface RuxOptionGroup { /** * The option group label */ "label"?: string; } interface RuxPopUp { /** * When provided, will close the pop-up when a single selection is made. * @default false */ "closeOnSelect": boolean; /** * Turns autoUpdate on or off which makes the pop-up move to stay in view based on scroll. Defaults to false. * @default false */ "disableAutoUpdate": boolean; /** * watches for trigger movements and replace the popup if movement is detected. * @default false */ "enableAnimationFrame": boolean; /** * Closes the pop up and returns false. */ "hide": () => Promise; /** * Determines if the pop up is open or closed * @default false */ "open": boolean; /** * The placement of the pop up relative to it's slotted trigger element. Defaults to auto. * @default 'auto' */ "placement": ExtendedPlacement; /** * Opens the pop up and returns true. */ "show": () => Promise; /** * The position strategy of the popup, either absolute or fixed. * @default 'absolute' */ "strategy": 'absolute' | 'fixed'; } interface RuxProgress { /** * Hides the progress label * @default false */ "hideLabel": boolean; /** * For progress bars where progress bars have a maximum value greater or less than 100 * @default 100 */ "max": number; /** * Current progress value between 0 and 100 (or the max, if defined below). * @default 0 */ "value"?: number; } interface RuxPushButton { /** * Checks the push button via HTML `checked` attribute. Push button takes on a distinct "enabled" or "selected" visual state. * @default false */ "checked": boolean; /** * Disables the push button via HTML `disabled` attribute. Button takes on a distinct disabled visual state. Cursor uses the `not-allowed` system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled": boolean; /** * For a [button style guide, see the Button section in Astro UXDS Guidelines](https://astrouxds.com/components/button) Displays an Astro icon matching this string. For a [full list of available icons, see the Icons section in Astro UXDS Guidelines](https://astrouxds.com/ui-components/icons-and-symbols) */ "icon"?: string; /** * Hides slotted text from the button by setting rux-button--icon-only class * @default false */ "iconOnly": boolean; /** * The label of the push button. * @default '' */ "label": string; /** * The name of the push button. * @default '' */ "name": string; /** * Changes size of a push button from medium to small or large by setting sizing classes rux-button--small rux-button--large */ "size"?: 'small' | 'medium' | 'large'; /** * The value of the push button. * @default '' */ "value": string; } interface RuxRadio { /** * Toggles checked state of a radio * @default false */ "checked": boolean; /** * Disables the radio via HTML disabled attribute. Radio takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled": boolean; /** * The radio label text. For HTML content, use the default slot instead. */ "label"?: string; /** * The radio name * @default '' */ "name": string; "setButtonTabindex": (value: number) => Promise; "setFocus": (ev: any) => Promise; /** * The radio value * @default '' */ "value": string; } interface RuxRadioGroup { /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Radio Group as invalid. * @default false */ "invalid": boolean; /** * The label of the radio group. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The name of the radio group - submitted with form data. Must match the name of the radios in the group. * @default '' */ "name": string; /** * Marks that a selection from the radio-group is requried. * @default false */ "required": boolean; /** * The value of the current selected radio in the group. Changing this will also mark that radio as checked in the UI. */ "value"?: any | null; } interface RuxRuler { /** * @default '' */ "end": string; /** * @default false */ "hideJDay": boolean; /** * @default '' */ "interval": any; /** * @default false */ "isSecondary": boolean; /** * @default 'both' */ "rulerPosition": 'top' | 'bottom' | 'both'; /** * @default false */ "showSecondaryRuler"?: boolean | undefined; /** * Display the day (MM/DD) at 00:00. Only works when Timeline interval is set to 'hour' or 'minutes'. * @deprecated This property is deprecated and will be removed in the next major release. Please use the `show-secondary-ruler` property on the rux-timeline component instead. * @default false */ "showStartOfDay"?: boolean | undefined; /** * @default '' */ "start": string; /** * @default 'UTC' */ "timezone": string; } interface RuxSegmentedButton { /** * Items in this Array are the individual button segments. * @default [] */ "data": SegmentedButton[]; /** * Sets the disabled attribute. * @default false */ "disabled": boolean; /** * When passed in on load, this selects the first button segment with a matching label. When the selected segment changes, this property updates with the currently selected value, which reflects back to the component attribute. If no button segment label matches this string, then no segment is selected. This value takes priority over setting selected boolean property on the items in the data array. * @default '' */ "selected": string; /** * Changes size of segmented button from small to medium or large. */ "size"?: 'small' | 'medium' | 'large'; } interface RuxSelect { /** * Disables the select menu via HTML disabled attribute. Select menu takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled": boolean; /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * Styles the select menu as a inline, borderless variant. * @default false */ "inline"?: boolean; /** * Id for the Select Input */ "inputId"?: string; /** * Presentational only. Renders the Select Menu as invalid. * @default false */ "invalid": boolean; /** * The select label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * Id for the Label */ "labelId"?: string; /** * Enables multiselect * @default false */ "multiple": boolean; /** * Sets the Name of the Input Element * @default '' */ "name": string; /** * Sets the field as required * @default false */ "required": boolean; /** * Sets element as focused */ "setFocus": (options?: FocusOptions) => Promise; /** * The size of rux-select * @default 'medium' */ "size"?: 'small' | 'medium' | 'large'; /** * The value of the selected option. If multiple is true, this is an array. */ "value"?: string | string[]; } interface RuxSlider { /** * Shows tick marks and labels in the order provided and aligns evenly based on the length. * @default [] */ "axisLabels": string[]; /** * Determines if the slider is disabled. * @default false */ "disabled": boolean; /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * The slider label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * Max value of slider. * @default 100 */ "max": number; /** * Min value of the slider. * @default 0 */ "min": number; /** * If present, creates a dual-range slider by adding a second thumb. */ "minVal"?: number; /** * Name of the Input Field for Form Submission * @default '' */ "name": string; /** * Step amount of slider value. * @default 1 */ "step": number; /** * In a dual-range slider, disables thumb swapping. * @default false */ "strict": boolean; /** * Hides labels and only shows tick marks if axis-labels is provided. * @default false */ "ticksOnly": boolean; /** * Current value of the slider. The default value is halfway between the specified minimum and maximum. - [HTMLElement/input_type_range>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range) In dual-range, this value should be higher than the min-val. * @default (this.max! - this.min!) / 2 + this.min! */ "value": number; } interface RuxStatus { /** * Sets the status symbol, valid options are critical, serious, caution, normal, standby and off * @default 'normal' */ "status"?: Status; } interface RuxSwitch { /** * Toggles checked state of a switch * @default false */ "checked": boolean; /** * Disables the switch via HTML disabled attribute. Switch takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled": boolean; /** * The switch label. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The switch name * @default '' */ "name": string; /** * The switch value * @default '' */ "value": string; } interface RuxTab { /** * If present, sets a disabled state on this tab item, indicating it cannot be selected by user action. * @default false */ "disabled": boolean; /** * If present, overrides which tab is selected on load / mount. By default, the first item is selected. * @default false */ "selected": boolean; /** * If passed or set to true, displays the tabs in a smaller style, suitable for limited-space uses. * @default false */ "small": boolean; } interface RuxTabPanel { } interface RuxTabPanels { } interface RuxTable { } interface RuxTableBody { } interface RuxTableCell { } interface RuxTableHeader { } interface RuxTableHeaderCell { } interface RuxTableHeaderRow { } interface RuxTableRow { /** * Changes the background color of the row. Can be applied to multiple rows at once. * @default false */ "selected": boolean; } interface RuxTabs { /** * Changes the style of the tabs and decreases their overall size * @default false */ "compact": boolean; /** * If passed or set to true, displays the tabs in a smaller style, suitable for limited-space uses. */ "small"?: boolean; } interface RuxTag { /** * Used to display a status of pass, fail, or unknown. If no status is provided or the provided status is not an accepted status type, the default is unknown. * @default 'unknown' */ "status"?: StatusTags; } interface RuxTextarea { /** * Sets the input as disabled * @default false */ "disabled": boolean; /** * The validation error text */ "errorText"?: string; /** * The or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Textarea as invalid. * @default false */ "invalid": boolean; /** * The textarea label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The input maxLength attribute */ "maxLength"?: string; /** * The input minLength attribute */ "minLength"?: string; /** * The input name * @default '' */ "name": string; /** * The textarea placeholder text */ "placeholder"?: string; /** * The textareas readonly attribute * @default false */ "readonly": boolean; /** * Sets the input as required * @default false */ "required": boolean; /** * The input rows attribute */ "rows"?: number; /** * Sets element as focused */ "setFocus": (options?: FocusOptions) => Promise; /** * Styles the input element size between small, medium and large. The default styling is medium. */ "size"?: 'small' | 'medium' | 'large'; /** * The input value * @default '' */ "value": string; } interface RuxTimeRegion { /** * The end date. Must be an ISO string "2021-02-02T05:00:00Z" * @default '' */ "end": string; /** * Optionally hide the bottom right timestamp. * @default false */ "hideTimestamp": boolean; /** * Visually indicates a partial time regions. Partial time regions are time regions that start or end outside of the current range of the timeline. * @default 'none' */ "partial": 'none' | 'start' | 'end' | 'ongoing'; /** * Visually displays the selected state * @default false */ "selected": boolean; /** * The start date. Must be an ISO string "2021-02-02T05:00:00Z". * @default '' */ "start": string; /** * Short hand attribute for displaying a Status icon and appropriate border color. */ "status"?: Status; /** * @default 'UTC' */ "timezone": string; } interface RuxTimeline { /** * The timeline's end date. Must be an ISO string "2021-02-02T05:00:00Z" * @default '' */ "end": string; /** * Visually marks past time as played in each track * @default false */ "hasPlayedIndicator": boolean; /** * Hides the J-Day display when show-secondary-ruler is true. * @default false */ "hideJDay": boolean; /** * The timeline's date time interval * @default 'hour' */ "interval": 'month' | 'week' | 'hour' | 'day' | 'minute'; /** * The timeline's playhead date time. Must be an ISO string "2021-02-02T05:00:00Z" */ "playhead"?: string; /** * Controls the position of the ruler. Either top, bottom or both. * @default 'both' */ "rulerPosition": | 'top' | 'bottom' | 'both'; /** * Controls the display of grid lines * @default false */ "showGrid": boolean; /** * Controls whether or not the attached rux-ruler displays the secondary date portion. * @default false */ "showSecondaryRuler": boolean; /** * The timeline's start date. Must be an ISO string "2021-02-02T05:00:00Z" * @default '' */ "start": string; /** * Controls the timezone that the timeline is localized to. Must be an IANA time zone name ("America/New_York") or an offset string. * @default 'UTC' */ "timezone": string; /** * The timeline's zoom level. * @default 1 */ "zoom": number; } interface RuxToast { /** * If provided, the toast will automatically close after this amount of time. Accepts value either in milliseconds or seconds (which will be converted to milliseconds internally), between `2000` and `10000`, or `2` and `10`, respectively. Any number provided outside of the `2000`-`10000` range will be ignored in favor of the default 2000ms delay.
If `closeAfter` is not passed or if it is given an undefined or `null` value, the toast will stay open until the user closes it. */ "closeAfter"?: number; /** * Prevents the user from dismissing the notification. Hides the close icon. * @default false */ "hideClose": boolean; /** * Message for the toast. * @default '' */ "message": string; /** * Allows for a status to be assigned to the toast. */ "status"?: Status1; } interface RuxToastStack { /** * Adds an individual toast to the stack with the set props passed in as an object. Accepts any key's that match rux-toast props (message, hideClose, ect). */ "addToast": (props: { [x: string]: any; hasOwnProperty: (arg0: string) => any; }) => Promise; /** * position of toast stack in viewport * @default 'top-right' */ "position": ToastStackPosition; } interface RuxTooltip { /** * How long it takes the tooltip to appear in milliseconds, default = 800, Overrides the css custom property --delay. * @default 800 */ "delay": number; /** * Turns disableAutoUpdate on or off which makes the tooltip move to stay in view based on scroll. Defaults to false. * @default false */ "disableAutoUpdate": boolean; /** * Closes the tooltip and returns false. */ "hide": () => Promise; /** * The tooltip's content. * @default '' */ "message": string; /** * Pixel offset from trigger, default = 8 * @default 8 */ "offset": number; /** * Whether or not the tooltip is open * @default false */ "open": boolean; /** * The placement of the tooltip relative to it's slotted trigger element. Defaults to auto. * @default 'auto' */ "placement": ExtendedPlacement; /** * Opens the tooltip and returns true. */ "show": () => Promise; /** * The position strategy of the tooltip, either absolute or fixed. * @default 'absolute' */ "strategy": 'absolute' | 'fixed'; } interface RuxTrack { /** * @default 0 */ "columns": number; /** * @default '' */ "end": string; "interval": any; /** * The playhead of rux-track. */ "playhead": any; /** * @default '' */ "start": string; /** * @default 'UTC' */ "timezone": string; /** * @default 0 */ "width": number; } interface RuxTree { } interface RuxTreeNode { /** * Sets the expanded state * @default false */ "expanded": boolean; /** * Sets the selected state * @default false */ "selected": boolean; /** * Sets the expanded state * @param value */ "setExpanded": (value: boolean) => Promise; /** * Sets the selected state * @param value */ "setSelected": (value: boolean) => Promise; } } export interface RuxAccordionItemCustomEvent extends CustomEvent { detail: T; target: HTMLRuxAccordionItemElement; } export interface RuxCheckboxCustomEvent extends CustomEvent { detail: T; target: HTMLRuxCheckboxElement; } export interface RuxDialogCustomEvent extends CustomEvent { detail: T; target: HTMLRuxDialogElement; } export interface RuxInputCustomEvent extends CustomEvent { detail: T; target: HTMLRuxInputElement; } export interface RuxMenuCustomEvent extends CustomEvent { detail: T; target: HTMLRuxMenuElement; } export interface RuxNotificationCustomEvent extends CustomEvent { detail: T; target: HTMLRuxNotificationElement; } export interface RuxOptionCustomEvent extends CustomEvent { detail: T; target: HTMLRuxOptionElement; } export interface RuxOptionGroupCustomEvent extends CustomEvent { detail: T; target: HTMLRuxOptionGroupElement; } export interface RuxPopUpCustomEvent extends CustomEvent { detail: T; target: HTMLRuxPopUpElement; } export interface RuxPushButtonCustomEvent extends CustomEvent { detail: T; target: HTMLRuxPushButtonElement; } export interface RuxRadioCustomEvent extends CustomEvent { detail: T; target: HTMLRuxRadioElement; } export interface RuxRadioGroupCustomEvent extends CustomEvent { detail: T; target: HTMLRuxRadioGroupElement; } export interface RuxSegmentedButtonCustomEvent extends CustomEvent { detail: T; target: HTMLRuxSegmentedButtonElement; } export interface RuxSelectCustomEvent extends CustomEvent { detail: T; target: HTMLRuxSelectElement; } export interface RuxSliderCustomEvent extends CustomEvent { detail: T; target: HTMLRuxSliderElement; } export interface RuxSwitchCustomEvent extends CustomEvent { detail: T; target: HTMLRuxSwitchElement; } export interface RuxTabCustomEvent extends CustomEvent { detail: T; target: HTMLRuxTabElement; } export interface RuxTabPanelsCustomEvent extends CustomEvent { detail: T; target: HTMLRuxTabPanelsElement; } export interface RuxTabsCustomEvent extends CustomEvent { detail: T; target: HTMLRuxTabsElement; } export interface RuxTextareaCustomEvent extends CustomEvent { detail: T; target: HTMLRuxTextareaElement; } export interface RuxTimeRegionCustomEvent extends CustomEvent { detail: T; target: HTMLRuxTimeRegionElement; } export interface RuxToastCustomEvent extends CustomEvent { detail: T; target: HTMLRuxToastElement; } export interface RuxTooltipCustomEvent extends CustomEvent { detail: T; target: HTMLRuxTooltipElement; } export interface RuxTreeNodeCustomEvent extends CustomEvent { detail: T; target: HTMLRuxTreeNodeElement; } declare global { interface HTMLRuxAccordionElement extends Components.RuxAccordion, HTMLStencilElement { } var HTMLRuxAccordionElement: { prototype: HTMLRuxAccordionElement; new (): HTMLRuxAccordionElement; }; interface HTMLRuxAccordionItemElementEventMap { "ruxexpanded": any; "ruxcollapsed": any; } interface HTMLRuxAccordionItemElement extends Components.RuxAccordionItem, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxAccordionItemElement, ev: RuxAccordionItemCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxAccordionItemElement, ev: RuxAccordionItemCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxAccordionItemElement: { prototype: HTMLRuxAccordionItemElement; new (): HTMLRuxAccordionItemElement; }; interface HTMLRuxBreadcrumbElement extends Components.RuxBreadcrumb, HTMLStencilElement { } var HTMLRuxBreadcrumbElement: { prototype: HTMLRuxBreadcrumbElement; new (): HTMLRuxBreadcrumbElement; }; interface HTMLRuxBreadcrumbItemElement extends Components.RuxBreadcrumbItem, HTMLStencilElement { } var HTMLRuxBreadcrumbItemElement: { prototype: HTMLRuxBreadcrumbItemElement; new (): HTMLRuxBreadcrumbItemElement; }; interface HTMLRuxButtonElement extends Components.RuxButton, HTMLStencilElement { } var HTMLRuxButtonElement: { prototype: HTMLRuxButtonElement; new (): HTMLRuxButtonElement; }; /** * @deprecated Button Group is deprecated and will be removed in a next major release. * Instead, you should use `flex` or `grid` in combination with our spacing design tokens. */ interface HTMLRuxButtonGroupElement extends Components.RuxButtonGroup, HTMLStencilElement { } var HTMLRuxButtonGroupElement: { prototype: HTMLRuxButtonGroupElement; new (): HTMLRuxButtonGroupElement; }; interface HTMLRuxCardElement extends Components.RuxCard, HTMLStencilElement { } var HTMLRuxCardElement: { prototype: HTMLRuxCardElement; new (): HTMLRuxCardElement; }; interface HTMLRuxCheckboxElementEventMap { "ruxchange": any; "ruxinput": any; "ruxfocus": any; "ruxblur": any; } interface HTMLRuxCheckboxElement extends Components.RuxCheckbox, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxCheckboxElement, ev: RuxCheckboxCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxCheckboxElement, ev: RuxCheckboxCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxCheckboxElement: { prototype: HTMLRuxCheckboxElement; new (): HTMLRuxCheckboxElement; }; interface HTMLRuxCheckboxGroupElement extends Components.RuxCheckboxGroup, HTMLStencilElement { } var HTMLRuxCheckboxGroupElement: { prototype: HTMLRuxCheckboxGroupElement; new (): HTMLRuxCheckboxGroupElement; }; interface HTMLRuxClassificationMarkingElement extends Components.RuxClassificationMarking, HTMLStencilElement { } var HTMLRuxClassificationMarkingElement: { prototype: HTMLRuxClassificationMarkingElement; new (): HTMLRuxClassificationMarkingElement; }; interface HTMLRuxClockElement extends Components.RuxClock, HTMLStencilElement { } var HTMLRuxClockElement: { prototype: HTMLRuxClockElement; new (): HTMLRuxClockElement; }; interface HTMLRuxContainerElement extends Components.RuxContainer, HTMLStencilElement { } var HTMLRuxContainerElement: { prototype: HTMLRuxContainerElement; new (): HTMLRuxContainerElement; }; interface HTMLRuxDatetimeElement extends Components.RuxDatetime, HTMLStencilElement { } var HTMLRuxDatetimeElement: { prototype: HTMLRuxDatetimeElement; new (): HTMLRuxDatetimeElement; }; interface HTMLRuxDialogElementEventMap { "ruxdialogopened": void; "ruxdialogclosed": boolean | null; } interface HTMLRuxDialogElement extends Components.RuxDialog, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxDialogElement, ev: RuxDialogCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxDialogElement, ev: RuxDialogCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxDialogElement: { prototype: HTMLRuxDialogElement; new (): HTMLRuxDialogElement; }; interface HTMLRuxGlobalStatusBarElement extends Components.RuxGlobalStatusBar, HTMLStencilElement { } var HTMLRuxGlobalStatusBarElement: { prototype: HTMLRuxGlobalStatusBarElement; new (): HTMLRuxGlobalStatusBarElement; }; interface HTMLRuxIconElement extends Components.RuxIcon, HTMLStencilElement { } var HTMLRuxIconElement: { prototype: HTMLRuxIconElement; new (): HTMLRuxIconElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIcon360Element extends Components.RuxIcon360, HTMLStencilElement { } var HTMLRuxIcon360Element: { prototype: HTMLRuxIcon360Element; new (): HTMLRuxIcon360Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIcon3dRotationElement extends Components.RuxIcon3dRotation, HTMLStencilElement { } var HTMLRuxIcon3dRotationElement: { prototype: HTMLRuxIcon3dRotationElement; new (): HTMLRuxIcon3dRotationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIcon4kElement extends Components.RuxIcon4k, HTMLStencilElement { } var HTMLRuxIcon4kElement: { prototype: HTMLRuxIcon4kElement; new (): HTMLRuxIcon4kElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAcUnitElement extends Components.RuxIconAcUnit, HTMLStencilElement { } var HTMLRuxIconAcUnitElement: { prototype: HTMLRuxIconAcUnitElement; new (): HTMLRuxIconAcUnitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccessAlarmsElement extends Components.RuxIconAccessAlarms, HTMLStencilElement { } var HTMLRuxIconAccessAlarmsElement: { prototype: HTMLRuxIconAccessAlarmsElement; new (): HTMLRuxIconAccessAlarmsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccessTimeElement extends Components.RuxIconAccessTime, HTMLStencilElement { } var HTMLRuxIconAccessTimeElement: { prototype: HTMLRuxIconAccessTimeElement; new (): HTMLRuxIconAccessTimeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccessibilityElement extends Components.RuxIconAccessibility, HTMLStencilElement { } var HTMLRuxIconAccessibilityElement: { prototype: HTMLRuxIconAccessibilityElement; new (): HTMLRuxIconAccessibilityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccessibilityNewElement extends Components.RuxIconAccessibilityNew, HTMLStencilElement { } var HTMLRuxIconAccessibilityNewElement: { prototype: HTMLRuxIconAccessibilityNewElement; new (): HTMLRuxIconAccessibilityNewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccessibleElement extends Components.RuxIconAccessible, HTMLStencilElement { } var HTMLRuxIconAccessibleElement: { prototype: HTMLRuxIconAccessibleElement; new (): HTMLRuxIconAccessibleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccessibleForwardElement extends Components.RuxIconAccessibleForward, HTMLStencilElement { } var HTMLRuxIconAccessibleForwardElement: { prototype: HTMLRuxIconAccessibleForwardElement; new (): HTMLRuxIconAccessibleForwardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccountBalanceElement extends Components.RuxIconAccountBalance, HTMLStencilElement { } var HTMLRuxIconAccountBalanceElement: { prototype: HTMLRuxIconAccountBalanceElement; new (): HTMLRuxIconAccountBalanceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccountBalanceWalletElement extends Components.RuxIconAccountBalanceWallet, HTMLStencilElement { } var HTMLRuxIconAccountBalanceWalletElement: { prototype: HTMLRuxIconAccountBalanceWalletElement; new (): HTMLRuxIconAccountBalanceWalletElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccountBoxElement extends Components.RuxIconAccountBox, HTMLStencilElement { } var HTMLRuxIconAccountBoxElement: { prototype: HTMLRuxIconAccountBoxElement; new (): HTMLRuxIconAccountBoxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAccountCircleElement extends Components.RuxIconAccountCircle, HTMLStencilElement { } var HTMLRuxIconAccountCircleElement: { prototype: HTMLRuxIconAccountCircleElement; new (): HTMLRuxIconAccountCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAdbElement extends Components.RuxIconAdb, HTMLStencilElement { } var HTMLRuxIconAdbElement: { prototype: HTMLRuxIconAdbElement; new (): HTMLRuxIconAdbElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddElement extends Components.RuxIconAdd, HTMLStencilElement { } var HTMLRuxIconAddElement: { prototype: HTMLRuxIconAddElement; new (): HTMLRuxIconAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddAPhotoElement extends Components.RuxIconAddAPhoto, HTMLStencilElement { } var HTMLRuxIconAddAPhotoElement: { prototype: HTMLRuxIconAddAPhotoElement; new (): HTMLRuxIconAddAPhotoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddAlarmElement extends Components.RuxIconAddAlarm, HTMLStencilElement { } var HTMLRuxIconAddAlarmElement: { prototype: HTMLRuxIconAddAlarmElement; new (): HTMLRuxIconAddAlarmElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddAlertElement extends Components.RuxIconAddAlert, HTMLStencilElement { } var HTMLRuxIconAddAlertElement: { prototype: HTMLRuxIconAddAlertElement; new (): HTMLRuxIconAddAlertElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddBoxElement extends Components.RuxIconAddBox, HTMLStencilElement { } var HTMLRuxIconAddBoxElement: { prototype: HTMLRuxIconAddBoxElement; new (): HTMLRuxIconAddBoxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddCircleElement extends Components.RuxIconAddCircle, HTMLStencilElement { } var HTMLRuxIconAddCircleElement: { prototype: HTMLRuxIconAddCircleElement; new (): HTMLRuxIconAddCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddCircleOutlineElement extends Components.RuxIconAddCircleOutline, HTMLStencilElement { } var HTMLRuxIconAddCircleOutlineElement: { prototype: HTMLRuxIconAddCircleOutlineElement; new (): HTMLRuxIconAddCircleOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddCommentElement extends Components.RuxIconAddComment, HTMLStencilElement { } var HTMLRuxIconAddCommentElement: { prototype: HTMLRuxIconAddCommentElement; new (): HTMLRuxIconAddCommentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddLocationElement extends Components.RuxIconAddLocation, HTMLStencilElement { } var HTMLRuxIconAddLocationElement: { prototype: HTMLRuxIconAddLocationElement; new (): HTMLRuxIconAddLocationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddPhotoAlternateElement extends Components.RuxIconAddPhotoAlternate, HTMLStencilElement { } var HTMLRuxIconAddPhotoAlternateElement: { prototype: HTMLRuxIconAddPhotoAlternateElement; new (): HTMLRuxIconAddPhotoAlternateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddShoppingCartElement extends Components.RuxIconAddShoppingCart, HTMLStencilElement { } var HTMLRuxIconAddShoppingCartElement: { prototype: HTMLRuxIconAddShoppingCartElement; new (): HTMLRuxIconAddShoppingCartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddToHomeScreenElement extends Components.RuxIconAddToHomeScreen, HTMLStencilElement { } var HTMLRuxIconAddToHomeScreenElement: { prototype: HTMLRuxIconAddToHomeScreenElement; new (): HTMLRuxIconAddToHomeScreenElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddToPhotosElement extends Components.RuxIconAddToPhotos, HTMLStencilElement { } var HTMLRuxIconAddToPhotosElement: { prototype: HTMLRuxIconAddToPhotosElement; new (): HTMLRuxIconAddToPhotosElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAddToQueueElement extends Components.RuxIconAddToQueue, HTMLStencilElement { } var HTMLRuxIconAddToQueueElement: { prototype: HTMLRuxIconAddToQueueElement; new (): HTMLRuxIconAddToQueueElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAdjustElement extends Components.RuxIconAdjust, HTMLStencilElement { } var HTMLRuxIconAdjustElement: { prototype: HTMLRuxIconAdjustElement; new (): HTMLRuxIconAdjustElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatFlatElement extends Components.RuxIconAirlineSeatFlat, HTMLStencilElement { } var HTMLRuxIconAirlineSeatFlatElement: { prototype: HTMLRuxIconAirlineSeatFlatElement; new (): HTMLRuxIconAirlineSeatFlatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatFlatAngledElement extends Components.RuxIconAirlineSeatFlatAngled, HTMLStencilElement { } var HTMLRuxIconAirlineSeatFlatAngledElement: { prototype: HTMLRuxIconAirlineSeatFlatAngledElement; new (): HTMLRuxIconAirlineSeatFlatAngledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatIndividualSuiteElement extends Components.RuxIconAirlineSeatIndividualSuite, HTMLStencilElement { } var HTMLRuxIconAirlineSeatIndividualSuiteElement: { prototype: HTMLRuxIconAirlineSeatIndividualSuiteElement; new (): HTMLRuxIconAirlineSeatIndividualSuiteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatLegroomExtraElement extends Components.RuxIconAirlineSeatLegroomExtra, HTMLStencilElement { } var HTMLRuxIconAirlineSeatLegroomExtraElement: { prototype: HTMLRuxIconAirlineSeatLegroomExtraElement; new (): HTMLRuxIconAirlineSeatLegroomExtraElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatLegroomNormalElement extends Components.RuxIconAirlineSeatLegroomNormal, HTMLStencilElement { } var HTMLRuxIconAirlineSeatLegroomNormalElement: { prototype: HTMLRuxIconAirlineSeatLegroomNormalElement; new (): HTMLRuxIconAirlineSeatLegroomNormalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatLegroomReducedElement extends Components.RuxIconAirlineSeatLegroomReduced, HTMLStencilElement { } var HTMLRuxIconAirlineSeatLegroomReducedElement: { prototype: HTMLRuxIconAirlineSeatLegroomReducedElement; new (): HTMLRuxIconAirlineSeatLegroomReducedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatReclineExtraElement extends Components.RuxIconAirlineSeatReclineExtra, HTMLStencilElement { } var HTMLRuxIconAirlineSeatReclineExtraElement: { prototype: HTMLRuxIconAirlineSeatReclineExtraElement; new (): HTMLRuxIconAirlineSeatReclineExtraElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirlineSeatReclineNormalElement extends Components.RuxIconAirlineSeatReclineNormal, HTMLStencilElement { } var HTMLRuxIconAirlineSeatReclineNormalElement: { prototype: HTMLRuxIconAirlineSeatReclineNormalElement; new (): HTMLRuxIconAirlineSeatReclineNormalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirplanemodeActiveElement extends Components.RuxIconAirplanemodeActive, HTMLStencilElement { } var HTMLRuxIconAirplanemodeActiveElement: { prototype: HTMLRuxIconAirplanemodeActiveElement; new (): HTMLRuxIconAirplanemodeActiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirplanemodeInactiveElement extends Components.RuxIconAirplanemodeInactive, HTMLStencilElement { } var HTMLRuxIconAirplanemodeInactiveElement: { prototype: HTMLRuxIconAirplanemodeInactiveElement; new (): HTMLRuxIconAirplanemodeInactiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirplayElement extends Components.RuxIconAirplay, HTMLStencilElement { } var HTMLRuxIconAirplayElement: { prototype: HTMLRuxIconAirplayElement; new (): HTMLRuxIconAirplayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAirportShuttleElement extends Components.RuxIconAirportShuttle, HTMLStencilElement { } var HTMLRuxIconAirportShuttleElement: { prototype: HTMLRuxIconAirportShuttleElement; new (): HTMLRuxIconAirportShuttleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAlarmElement extends Components.RuxIconAlarm, HTMLStencilElement { } var HTMLRuxIconAlarmElement: { prototype: HTMLRuxIconAlarmElement; new (): HTMLRuxIconAlarmElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAlarmAddElement extends Components.RuxIconAlarmAdd, HTMLStencilElement { } var HTMLRuxIconAlarmAddElement: { prototype: HTMLRuxIconAlarmAddElement; new (): HTMLRuxIconAlarmAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAlarmOffElement extends Components.RuxIconAlarmOff, HTMLStencilElement { } var HTMLRuxIconAlarmOffElement: { prototype: HTMLRuxIconAlarmOffElement; new (): HTMLRuxIconAlarmOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAlarmOnElement extends Components.RuxIconAlarmOn, HTMLStencilElement { } var HTMLRuxIconAlarmOnElement: { prototype: HTMLRuxIconAlarmOnElement; new (): HTMLRuxIconAlarmOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAlbumElement extends Components.RuxIconAlbum, HTMLStencilElement { } var HTMLRuxIconAlbumElement: { prototype: HTMLRuxIconAlbumElement; new (): HTMLRuxIconAlbumElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAllInboxElement extends Components.RuxIconAllInbox, HTMLStencilElement { } var HTMLRuxIconAllInboxElement: { prototype: HTMLRuxIconAllInboxElement; new (): HTMLRuxIconAllInboxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAllInclusiveElement extends Components.RuxIconAllInclusive, HTMLStencilElement { } var HTMLRuxIconAllInclusiveElement: { prototype: HTMLRuxIconAllInclusiveElement; new (): HTMLRuxIconAllInclusiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAllOutElement extends Components.RuxIconAllOut, HTMLStencilElement { } var HTMLRuxIconAllOutElement: { prototype: HTMLRuxIconAllOutElement; new (): HTMLRuxIconAllOutElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAlternateEmailElement extends Components.RuxIconAlternateEmail, HTMLStencilElement { } var HTMLRuxIconAlternateEmailElement: { prototype: HTMLRuxIconAlternateEmailElement; new (): HTMLRuxIconAlternateEmailElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAltitudeElement extends Components.RuxIconAltitude, HTMLStencilElement { } var HTMLRuxIconAltitudeElement: { prototype: HTMLRuxIconAltitudeElement; new (): HTMLRuxIconAltitudeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAndroidElement extends Components.RuxIconAndroid, HTMLStencilElement { } var HTMLRuxIconAndroidElement: { prototype: HTMLRuxIconAndroidElement; new (): HTMLRuxIconAndroidElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAnnouncementElement extends Components.RuxIconAnnouncement, HTMLStencilElement { } var HTMLRuxIconAnnouncementElement: { prototype: HTMLRuxIconAnnouncementElement; new (): HTMLRuxIconAnnouncementElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAntennaElement extends Components.RuxIconAntenna, HTMLStencilElement { } var HTMLRuxIconAntennaElement: { prototype: HTMLRuxIconAntennaElement; new (): HTMLRuxIconAntennaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAntennaOffElement extends Components.RuxIconAntennaOff, HTMLStencilElement { } var HTMLRuxIconAntennaOffElement: { prototype: HTMLRuxIconAntennaOffElement; new (): HTMLRuxIconAntennaOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAntennaReceiveElement extends Components.RuxIconAntennaReceive, HTMLStencilElement { } var HTMLRuxIconAntennaReceiveElement: { prototype: HTMLRuxIconAntennaReceiveElement; new (): HTMLRuxIconAntennaReceiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAntennaTransmitElement extends Components.RuxIconAntennaTransmit, HTMLStencilElement { } var HTMLRuxIconAntennaTransmitElement: { prototype: HTMLRuxIconAntennaTransmitElement; new (): HTMLRuxIconAntennaTransmitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAppsElement extends Components.RuxIconApps, HTMLStencilElement { } var HTMLRuxIconAppsElement: { prototype: HTMLRuxIconAppsElement; new (): HTMLRuxIconAppsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArchiveElement extends Components.RuxIconArchive, HTMLStencilElement { } var HTMLRuxIconArchiveElement: { prototype: HTMLRuxIconArchiveElement; new (): HTMLRuxIconArchiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowBackElement extends Components.RuxIconArrowBack, HTMLStencilElement { } var HTMLRuxIconArrowBackElement: { prototype: HTMLRuxIconArrowBackElement; new (): HTMLRuxIconArrowBackElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowBackIosElement extends Components.RuxIconArrowBackIos, HTMLStencilElement { } var HTMLRuxIconArrowBackIosElement: { prototype: HTMLRuxIconArrowBackIosElement; new (): HTMLRuxIconArrowBackIosElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowDownwardElement extends Components.RuxIconArrowDownward, HTMLStencilElement { } var HTMLRuxIconArrowDownwardElement: { prototype: HTMLRuxIconArrowDownwardElement; new (): HTMLRuxIconArrowDownwardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowDropDownElement extends Components.RuxIconArrowDropDown, HTMLStencilElement { } var HTMLRuxIconArrowDropDownElement: { prototype: HTMLRuxIconArrowDropDownElement; new (): HTMLRuxIconArrowDropDownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowDropDownCircleElement extends Components.RuxIconArrowDropDownCircle, HTMLStencilElement { } var HTMLRuxIconArrowDropDownCircleElement: { prototype: HTMLRuxIconArrowDropDownCircleElement; new (): HTMLRuxIconArrowDropDownCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowDropUpElement extends Components.RuxIconArrowDropUp, HTMLStencilElement { } var HTMLRuxIconArrowDropUpElement: { prototype: HTMLRuxIconArrowDropUpElement; new (): HTMLRuxIconArrowDropUpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowForwardElement extends Components.RuxIconArrowForward, HTMLStencilElement { } var HTMLRuxIconArrowForwardElement: { prototype: HTMLRuxIconArrowForwardElement; new (): HTMLRuxIconArrowForwardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowForwardIosElement extends Components.RuxIconArrowForwardIos, HTMLStencilElement { } var HTMLRuxIconArrowForwardIosElement: { prototype: HTMLRuxIconArrowForwardIosElement; new (): HTMLRuxIconArrowForwardIosElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowLeftElement extends Components.RuxIconArrowLeft, HTMLStencilElement { } var HTMLRuxIconArrowLeftElement: { prototype: HTMLRuxIconArrowLeftElement; new (): HTMLRuxIconArrowLeftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowRightElement extends Components.RuxIconArrowRight, HTMLStencilElement { } var HTMLRuxIconArrowRightElement: { prototype: HTMLRuxIconArrowRightElement; new (): HTMLRuxIconArrowRightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowRightAltElement extends Components.RuxIconArrowRightAlt, HTMLStencilElement { } var HTMLRuxIconArrowRightAltElement: { prototype: HTMLRuxIconArrowRightAltElement; new (): HTMLRuxIconArrowRightAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArrowUpwardElement extends Components.RuxIconArrowUpward, HTMLStencilElement { } var HTMLRuxIconArrowUpwardElement: { prototype: HTMLRuxIconArrowUpwardElement; new (): HTMLRuxIconArrowUpwardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconArtTrackElement extends Components.RuxIconArtTrack, HTMLStencilElement { } var HTMLRuxIconArtTrackElement: { prototype: HTMLRuxIconArtTrackElement; new (): HTMLRuxIconArtTrackElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAspectRatioElement extends Components.RuxIconAspectRatio, HTMLStencilElement { } var HTMLRuxIconAspectRatioElement: { prototype: HTMLRuxIconAspectRatioElement; new (): HTMLRuxIconAspectRatioElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssessmentElement extends Components.RuxIconAssessment, HTMLStencilElement { } var HTMLRuxIconAssessmentElement: { prototype: HTMLRuxIconAssessmentElement; new (): HTMLRuxIconAssessmentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssignmentElement extends Components.RuxIconAssignment, HTMLStencilElement { } var HTMLRuxIconAssignmentElement: { prototype: HTMLRuxIconAssignmentElement; new (): HTMLRuxIconAssignmentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssignmentFindElement extends Components.RuxIconAssignmentFind, HTMLStencilElement { } var HTMLRuxIconAssignmentFindElement: { prototype: HTMLRuxIconAssignmentFindElement; new (): HTMLRuxIconAssignmentFindElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssignmentLateElement extends Components.RuxIconAssignmentLate, HTMLStencilElement { } var HTMLRuxIconAssignmentLateElement: { prototype: HTMLRuxIconAssignmentLateElement; new (): HTMLRuxIconAssignmentLateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssignmentReturnElement extends Components.RuxIconAssignmentReturn, HTMLStencilElement { } var HTMLRuxIconAssignmentReturnElement: { prototype: HTMLRuxIconAssignmentReturnElement; new (): HTMLRuxIconAssignmentReturnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssignmentReturnedElement extends Components.RuxIconAssignmentReturned, HTMLStencilElement { } var HTMLRuxIconAssignmentReturnedElement: { prototype: HTMLRuxIconAssignmentReturnedElement; new (): HTMLRuxIconAssignmentReturnedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssignmentTurnedInElement extends Components.RuxIconAssignmentTurnedIn, HTMLStencilElement { } var HTMLRuxIconAssignmentTurnedInElement: { prototype: HTMLRuxIconAssignmentTurnedInElement; new (): HTMLRuxIconAssignmentTurnedInElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssistantElement extends Components.RuxIconAssistant, HTMLStencilElement { } var HTMLRuxIconAssistantElement: { prototype: HTMLRuxIconAssistantElement; new (): HTMLRuxIconAssistantElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAssistantPhotoElement extends Components.RuxIconAssistantPhoto, HTMLStencilElement { } var HTMLRuxIconAssistantPhotoElement: { prototype: HTMLRuxIconAssistantPhotoElement; new (): HTMLRuxIconAssistantPhotoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAttachFileElement extends Components.RuxIconAttachFile, HTMLStencilElement { } var HTMLRuxIconAttachFileElement: { prototype: HTMLRuxIconAttachFileElement; new (): HTMLRuxIconAttachFileElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAttachMoneyElement extends Components.RuxIconAttachMoney, HTMLStencilElement { } var HTMLRuxIconAttachMoneyElement: { prototype: HTMLRuxIconAttachMoneyElement; new (): HTMLRuxIconAttachMoneyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAttachmentElement extends Components.RuxIconAttachment, HTMLStencilElement { } var HTMLRuxIconAttachmentElement: { prototype: HTMLRuxIconAttachmentElement; new (): HTMLRuxIconAttachmentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAudiotrackElement extends Components.RuxIconAudiotrack, HTMLStencilElement { } var HTMLRuxIconAudiotrackElement: { prototype: HTMLRuxIconAudiotrackElement; new (): HTMLRuxIconAudiotrackElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAutorenewElement extends Components.RuxIconAutorenew, HTMLStencilElement { } var HTMLRuxIconAutorenewElement: { prototype: HTMLRuxIconAutorenewElement; new (): HTMLRuxIconAutorenewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconAvTimerElement extends Components.RuxIconAvTimer, HTMLStencilElement { } var HTMLRuxIconAvTimerElement: { prototype: HTMLRuxIconAvTimerElement; new (): HTMLRuxIconAvTimerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBackspaceElement extends Components.RuxIconBackspace, HTMLStencilElement { } var HTMLRuxIconBackspaceElement: { prototype: HTMLRuxIconBackspaceElement; new (): HTMLRuxIconBackspaceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBackupElement extends Components.RuxIconBackup, HTMLStencilElement { } var HTMLRuxIconBackupElement: { prototype: HTMLRuxIconBackupElement; new (): HTMLRuxIconBackupElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBallotElement extends Components.RuxIconBallot, HTMLStencilElement { } var HTMLRuxIconBallotElement: { prototype: HTMLRuxIconBallotElement; new (): HTMLRuxIconBallotElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBarChartElement extends Components.RuxIconBarChart, HTMLStencilElement { } var HTMLRuxIconBarChartElement: { prototype: HTMLRuxIconBarChartElement; new (): HTMLRuxIconBarChartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBattery20Element extends Components.RuxIconBattery20, HTMLStencilElement { } var HTMLRuxIconBattery20Element: { prototype: HTMLRuxIconBattery20Element; new (): HTMLRuxIconBattery20Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBattery30Element extends Components.RuxIconBattery30, HTMLStencilElement { } var HTMLRuxIconBattery30Element: { prototype: HTMLRuxIconBattery30Element; new (): HTMLRuxIconBattery30Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBattery50Element extends Components.RuxIconBattery50, HTMLStencilElement { } var HTMLRuxIconBattery50Element: { prototype: HTMLRuxIconBattery50Element; new (): HTMLRuxIconBattery50Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBattery60Element extends Components.RuxIconBattery60, HTMLStencilElement { } var HTMLRuxIconBattery60Element: { prototype: HTMLRuxIconBattery60Element; new (): HTMLRuxIconBattery60Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBattery80Element extends Components.RuxIconBattery80, HTMLStencilElement { } var HTMLRuxIconBattery80Element: { prototype: HTMLRuxIconBattery80Element; new (): HTMLRuxIconBattery80Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBattery90Element extends Components.RuxIconBattery90, HTMLStencilElement { } var HTMLRuxIconBattery90Element: { prototype: HTMLRuxIconBattery90Element; new (): HTMLRuxIconBattery90Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryAlertElement extends Components.RuxIconBatteryAlert, HTMLStencilElement { } var HTMLRuxIconBatteryAlertElement: { prototype: HTMLRuxIconBatteryAlertElement; new (): HTMLRuxIconBatteryAlertElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryCharging20Element extends Components.RuxIconBatteryCharging20, HTMLStencilElement { } var HTMLRuxIconBatteryCharging20Element: { prototype: HTMLRuxIconBatteryCharging20Element; new (): HTMLRuxIconBatteryCharging20Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryCharging30Element extends Components.RuxIconBatteryCharging30, HTMLStencilElement { } var HTMLRuxIconBatteryCharging30Element: { prototype: HTMLRuxIconBatteryCharging30Element; new (): HTMLRuxIconBatteryCharging30Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryCharging50Element extends Components.RuxIconBatteryCharging50, HTMLStencilElement { } var HTMLRuxIconBatteryCharging50Element: { prototype: HTMLRuxIconBatteryCharging50Element; new (): HTMLRuxIconBatteryCharging50Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryCharging60Element extends Components.RuxIconBatteryCharging60, HTMLStencilElement { } var HTMLRuxIconBatteryCharging60Element: { prototype: HTMLRuxIconBatteryCharging60Element; new (): HTMLRuxIconBatteryCharging60Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryCharging80Element extends Components.RuxIconBatteryCharging80, HTMLStencilElement { } var HTMLRuxIconBatteryCharging80Element: { prototype: HTMLRuxIconBatteryCharging80Element; new (): HTMLRuxIconBatteryCharging80Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryCharging90Element extends Components.RuxIconBatteryCharging90, HTMLStencilElement { } var HTMLRuxIconBatteryCharging90Element: { prototype: HTMLRuxIconBatteryCharging90Element; new (): HTMLRuxIconBatteryCharging90Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryChargingFullElement extends Components.RuxIconBatteryChargingFull, HTMLStencilElement { } var HTMLRuxIconBatteryChargingFullElement: { prototype: HTMLRuxIconBatteryChargingFullElement; new (): HTMLRuxIconBatteryChargingFullElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryFullElement extends Components.RuxIconBatteryFull, HTMLStencilElement { } var HTMLRuxIconBatteryFullElement: { prototype: HTMLRuxIconBatteryFullElement; new (): HTMLRuxIconBatteryFullElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryStdElement extends Components.RuxIconBatteryStd, HTMLStencilElement { } var HTMLRuxIconBatteryStdElement: { prototype: HTMLRuxIconBatteryStdElement; new (): HTMLRuxIconBatteryStdElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBatteryUnknownElement extends Components.RuxIconBatteryUnknown, HTMLStencilElement { } var HTMLRuxIconBatteryUnknownElement: { prototype: HTMLRuxIconBatteryUnknownElement; new (): HTMLRuxIconBatteryUnknownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBeachAccessElement extends Components.RuxIconBeachAccess, HTMLStencilElement { } var HTMLRuxIconBeachAccessElement: { prototype: HTMLRuxIconBeachAccessElement; new (): HTMLRuxIconBeachAccessElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBeenhereElement extends Components.RuxIconBeenhere, HTMLStencilElement { } var HTMLRuxIconBeenhereElement: { prototype: HTMLRuxIconBeenhereElement; new (): HTMLRuxIconBeenhereElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBlockElement extends Components.RuxIconBlock, HTMLStencilElement { } var HTMLRuxIconBlockElement: { prototype: HTMLRuxIconBlockElement; new (): HTMLRuxIconBlockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBluetoothElement extends Components.RuxIconBluetooth, HTMLStencilElement { } var HTMLRuxIconBluetoothElement: { prototype: HTMLRuxIconBluetoothElement; new (): HTMLRuxIconBluetoothElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBluetoothAudioElement extends Components.RuxIconBluetoothAudio, HTMLStencilElement { } var HTMLRuxIconBluetoothAudioElement: { prototype: HTMLRuxIconBluetoothAudioElement; new (): HTMLRuxIconBluetoothAudioElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBluetoothConnectedElement extends Components.RuxIconBluetoothConnected, HTMLStencilElement { } var HTMLRuxIconBluetoothConnectedElement: { prototype: HTMLRuxIconBluetoothConnectedElement; new (): HTMLRuxIconBluetoothConnectedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBluetoothDisabledElement extends Components.RuxIconBluetoothDisabled, HTMLStencilElement { } var HTMLRuxIconBluetoothDisabledElement: { prototype: HTMLRuxIconBluetoothDisabledElement; new (): HTMLRuxIconBluetoothDisabledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBluetoothSearchingElement extends Components.RuxIconBluetoothSearching, HTMLStencilElement { } var HTMLRuxIconBluetoothSearchingElement: { prototype: HTMLRuxIconBluetoothSearchingElement; new (): HTMLRuxIconBluetoothSearchingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBlurCircularElement extends Components.RuxIconBlurCircular, HTMLStencilElement { } var HTMLRuxIconBlurCircularElement: { prototype: HTMLRuxIconBlurCircularElement; new (): HTMLRuxIconBlurCircularElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBlurLinearElement extends Components.RuxIconBlurLinear, HTMLStencilElement { } var HTMLRuxIconBlurLinearElement: { prototype: HTMLRuxIconBlurLinearElement; new (): HTMLRuxIconBlurLinearElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBlurOffElement extends Components.RuxIconBlurOff, HTMLStencilElement { } var HTMLRuxIconBlurOffElement: { prototype: HTMLRuxIconBlurOffElement; new (): HTMLRuxIconBlurOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBlurOnElement extends Components.RuxIconBlurOn, HTMLStencilElement { } var HTMLRuxIconBlurOnElement: { prototype: HTMLRuxIconBlurOnElement; new (): HTMLRuxIconBlurOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBookElement extends Components.RuxIconBook, HTMLStencilElement { } var HTMLRuxIconBookElement: { prototype: HTMLRuxIconBookElement; new (): HTMLRuxIconBookElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBookmarkElement extends Components.RuxIconBookmark, HTMLStencilElement { } var HTMLRuxIconBookmarkElement: { prototype: HTMLRuxIconBookmarkElement; new (): HTMLRuxIconBookmarkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBookmarkBorderElement extends Components.RuxIconBookmarkBorder, HTMLStencilElement { } var HTMLRuxIconBookmarkBorderElement: { prototype: HTMLRuxIconBookmarkBorderElement; new (): HTMLRuxIconBookmarkBorderElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBookmarksElement extends Components.RuxIconBookmarks, HTMLStencilElement { } var HTMLRuxIconBookmarksElement: { prototype: HTMLRuxIconBookmarksElement; new (): HTMLRuxIconBookmarksElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderAllElement extends Components.RuxIconBorderAll, HTMLStencilElement { } var HTMLRuxIconBorderAllElement: { prototype: HTMLRuxIconBorderAllElement; new (): HTMLRuxIconBorderAllElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderBottomElement extends Components.RuxIconBorderBottom, HTMLStencilElement { } var HTMLRuxIconBorderBottomElement: { prototype: HTMLRuxIconBorderBottomElement; new (): HTMLRuxIconBorderBottomElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderClearElement extends Components.RuxIconBorderClear, HTMLStencilElement { } var HTMLRuxIconBorderClearElement: { prototype: HTMLRuxIconBorderClearElement; new (): HTMLRuxIconBorderClearElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderColorElement extends Components.RuxIconBorderColor, HTMLStencilElement { } var HTMLRuxIconBorderColorElement: { prototype: HTMLRuxIconBorderColorElement; new (): HTMLRuxIconBorderColorElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderHorizontalElement extends Components.RuxIconBorderHorizontal, HTMLStencilElement { } var HTMLRuxIconBorderHorizontalElement: { prototype: HTMLRuxIconBorderHorizontalElement; new (): HTMLRuxIconBorderHorizontalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderInnerElement extends Components.RuxIconBorderInner, HTMLStencilElement { } var HTMLRuxIconBorderInnerElement: { prototype: HTMLRuxIconBorderInnerElement; new (): HTMLRuxIconBorderInnerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderLeftElement extends Components.RuxIconBorderLeft, HTMLStencilElement { } var HTMLRuxIconBorderLeftElement: { prototype: HTMLRuxIconBorderLeftElement; new (): HTMLRuxIconBorderLeftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderOuterElement extends Components.RuxIconBorderOuter, HTMLStencilElement { } var HTMLRuxIconBorderOuterElement: { prototype: HTMLRuxIconBorderOuterElement; new (): HTMLRuxIconBorderOuterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderRightElement extends Components.RuxIconBorderRight, HTMLStencilElement { } var HTMLRuxIconBorderRightElement: { prototype: HTMLRuxIconBorderRightElement; new (): HTMLRuxIconBorderRightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderStyleElement extends Components.RuxIconBorderStyle, HTMLStencilElement { } var HTMLRuxIconBorderStyleElement: { prototype: HTMLRuxIconBorderStyleElement; new (): HTMLRuxIconBorderStyleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderTopElement extends Components.RuxIconBorderTop, HTMLStencilElement { } var HTMLRuxIconBorderTopElement: { prototype: HTMLRuxIconBorderTopElement; new (): HTMLRuxIconBorderTopElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBorderVerticalElement extends Components.RuxIconBorderVertical, HTMLStencilElement { } var HTMLRuxIconBorderVerticalElement: { prototype: HTMLRuxIconBorderVerticalElement; new (): HTMLRuxIconBorderVerticalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrandingWatermarkElement extends Components.RuxIconBrandingWatermark, HTMLStencilElement { } var HTMLRuxIconBrandingWatermarkElement: { prototype: HTMLRuxIconBrandingWatermarkElement; new (): HTMLRuxIconBrandingWatermarkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightness1Element extends Components.RuxIconBrightness1, HTMLStencilElement { } var HTMLRuxIconBrightness1Element: { prototype: HTMLRuxIconBrightness1Element; new (): HTMLRuxIconBrightness1Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightness2Element extends Components.RuxIconBrightness2, HTMLStencilElement { } var HTMLRuxIconBrightness2Element: { prototype: HTMLRuxIconBrightness2Element; new (): HTMLRuxIconBrightness2Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightness3Element extends Components.RuxIconBrightness3, HTMLStencilElement { } var HTMLRuxIconBrightness3Element: { prototype: HTMLRuxIconBrightness3Element; new (): HTMLRuxIconBrightness3Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightness4Element extends Components.RuxIconBrightness4, HTMLStencilElement { } var HTMLRuxIconBrightness4Element: { prototype: HTMLRuxIconBrightness4Element; new (): HTMLRuxIconBrightness4Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightness5Element extends Components.RuxIconBrightness5, HTMLStencilElement { } var HTMLRuxIconBrightness5Element: { prototype: HTMLRuxIconBrightness5Element; new (): HTMLRuxIconBrightness5Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightness6Element extends Components.RuxIconBrightness6, HTMLStencilElement { } var HTMLRuxIconBrightness6Element: { prototype: HTMLRuxIconBrightness6Element; new (): HTMLRuxIconBrightness6Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightness7Element extends Components.RuxIconBrightness7, HTMLStencilElement { } var HTMLRuxIconBrightness7Element: { prototype: HTMLRuxIconBrightness7Element; new (): HTMLRuxIconBrightness7Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightnessAutoElement extends Components.RuxIconBrightnessAuto, HTMLStencilElement { } var HTMLRuxIconBrightnessAutoElement: { prototype: HTMLRuxIconBrightnessAutoElement; new (): HTMLRuxIconBrightnessAutoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightnessHighElement extends Components.RuxIconBrightnessHigh, HTMLStencilElement { } var HTMLRuxIconBrightnessHighElement: { prototype: HTMLRuxIconBrightnessHighElement; new (): HTMLRuxIconBrightnessHighElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightnessLowElement extends Components.RuxIconBrightnessLow, HTMLStencilElement { } var HTMLRuxIconBrightnessLowElement: { prototype: HTMLRuxIconBrightnessLowElement; new (): HTMLRuxIconBrightnessLowElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrightnessMediumElement extends Components.RuxIconBrightnessMedium, HTMLStencilElement { } var HTMLRuxIconBrightnessMediumElement: { prototype: HTMLRuxIconBrightnessMediumElement; new (): HTMLRuxIconBrightnessMediumElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrokenImageElement extends Components.RuxIconBrokenImage, HTMLStencilElement { } var HTMLRuxIconBrokenImageElement: { prototype: HTMLRuxIconBrokenImageElement; new (): HTMLRuxIconBrokenImageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBrushElement extends Components.RuxIconBrush, HTMLStencilElement { } var HTMLRuxIconBrushElement: { prototype: HTMLRuxIconBrushElement; new (): HTMLRuxIconBrushElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBubbleChartElement extends Components.RuxIconBubbleChart, HTMLStencilElement { } var HTMLRuxIconBubbleChartElement: { prototype: HTMLRuxIconBubbleChartElement; new (): HTMLRuxIconBubbleChartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBugReportElement extends Components.RuxIconBugReport, HTMLStencilElement { } var HTMLRuxIconBugReportElement: { prototype: HTMLRuxIconBugReportElement; new (): HTMLRuxIconBugReportElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBuildElement extends Components.RuxIconBuild, HTMLStencilElement { } var HTMLRuxIconBuildElement: { prototype: HTMLRuxIconBuildElement; new (): HTMLRuxIconBuildElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBurstModeElement extends Components.RuxIconBurstMode, HTMLStencilElement { } var HTMLRuxIconBurstModeElement: { prototype: HTMLRuxIconBurstModeElement; new (): HTMLRuxIconBurstModeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBusinessElement extends Components.RuxIconBusiness, HTMLStencilElement { } var HTMLRuxIconBusinessElement: { prototype: HTMLRuxIconBusinessElement; new (): HTMLRuxIconBusinessElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconBusinessCenterElement extends Components.RuxIconBusinessCenter, HTMLStencilElement { } var HTMLRuxIconBusinessCenterElement: { prototype: HTMLRuxIconBusinessCenterElement; new (): HTMLRuxIconBusinessCenterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCachedElement extends Components.RuxIconCached, HTMLStencilElement { } var HTMLRuxIconCachedElement: { prototype: HTMLRuxIconCachedElement; new (): HTMLRuxIconCachedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCakeElement extends Components.RuxIconCake, HTMLStencilElement { } var HTMLRuxIconCakeElement: { prototype: HTMLRuxIconCakeElement; new (): HTMLRuxIconCakeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCalendarTodayElement extends Components.RuxIconCalendarToday, HTMLStencilElement { } var HTMLRuxIconCalendarTodayElement: { prototype: HTMLRuxIconCalendarTodayElement; new (): HTMLRuxIconCalendarTodayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCalendarViewDayElement extends Components.RuxIconCalendarViewDay, HTMLStencilElement { } var HTMLRuxIconCalendarViewDayElement: { prototype: HTMLRuxIconCalendarViewDayElement; new (): HTMLRuxIconCalendarViewDayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallElement extends Components.RuxIconCall, HTMLStencilElement { } var HTMLRuxIconCallElement: { prototype: HTMLRuxIconCallElement; new (): HTMLRuxIconCallElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallEndElement extends Components.RuxIconCallEnd, HTMLStencilElement { } var HTMLRuxIconCallEndElement: { prototype: HTMLRuxIconCallEndElement; new (): HTMLRuxIconCallEndElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallMadeElement extends Components.RuxIconCallMade, HTMLStencilElement { } var HTMLRuxIconCallMadeElement: { prototype: HTMLRuxIconCallMadeElement; new (): HTMLRuxIconCallMadeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallMergeElement extends Components.RuxIconCallMerge, HTMLStencilElement { } var HTMLRuxIconCallMergeElement: { prototype: HTMLRuxIconCallMergeElement; new (): HTMLRuxIconCallMergeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallMissedElement extends Components.RuxIconCallMissed, HTMLStencilElement { } var HTMLRuxIconCallMissedElement: { prototype: HTMLRuxIconCallMissedElement; new (): HTMLRuxIconCallMissedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallMissedOutgoingElement extends Components.RuxIconCallMissedOutgoing, HTMLStencilElement { } var HTMLRuxIconCallMissedOutgoingElement: { prototype: HTMLRuxIconCallMissedOutgoingElement; new (): HTMLRuxIconCallMissedOutgoingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallReceivedElement extends Components.RuxIconCallReceived, HTMLStencilElement { } var HTMLRuxIconCallReceivedElement: { prototype: HTMLRuxIconCallReceivedElement; new (): HTMLRuxIconCallReceivedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallSplitElement extends Components.RuxIconCallSplit, HTMLStencilElement { } var HTMLRuxIconCallSplitElement: { prototype: HTMLRuxIconCallSplitElement; new (): HTMLRuxIconCallSplitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCallToActionElement extends Components.RuxIconCallToAction, HTMLStencilElement { } var HTMLRuxIconCallToActionElement: { prototype: HTMLRuxIconCallToActionElement; new (): HTMLRuxIconCallToActionElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCameraElement extends Components.RuxIconCamera, HTMLStencilElement { } var HTMLRuxIconCameraElement: { prototype: HTMLRuxIconCameraElement; new (): HTMLRuxIconCameraElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCameraAltElement extends Components.RuxIconCameraAlt, HTMLStencilElement { } var HTMLRuxIconCameraAltElement: { prototype: HTMLRuxIconCameraAltElement; new (): HTMLRuxIconCameraAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCameraEnhanceElement extends Components.RuxIconCameraEnhance, HTMLStencilElement { } var HTMLRuxIconCameraEnhanceElement: { prototype: HTMLRuxIconCameraEnhanceElement; new (): HTMLRuxIconCameraEnhanceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCameraFrontElement extends Components.RuxIconCameraFront, HTMLStencilElement { } var HTMLRuxIconCameraFrontElement: { prototype: HTMLRuxIconCameraFrontElement; new (): HTMLRuxIconCameraFrontElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCameraRearElement extends Components.RuxIconCameraRear, HTMLStencilElement { } var HTMLRuxIconCameraRearElement: { prototype: HTMLRuxIconCameraRearElement; new (): HTMLRuxIconCameraRearElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCameraRollElement extends Components.RuxIconCameraRoll, HTMLStencilElement { } var HTMLRuxIconCameraRollElement: { prototype: HTMLRuxIconCameraRollElement; new (): HTMLRuxIconCameraRollElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCancelElement extends Components.RuxIconCancel, HTMLStencilElement { } var HTMLRuxIconCancelElement: { prototype: HTMLRuxIconCancelElement; new (): HTMLRuxIconCancelElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCancelPresentationElement extends Components.RuxIconCancelPresentation, HTMLStencilElement { } var HTMLRuxIconCancelPresentationElement: { prototype: HTMLRuxIconCancelPresentationElement; new (): HTMLRuxIconCancelPresentationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCardGiftcardElement extends Components.RuxIconCardGiftcard, HTMLStencilElement { } var HTMLRuxIconCardGiftcardElement: { prototype: HTMLRuxIconCardGiftcardElement; new (): HTMLRuxIconCardGiftcardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCardMembershipElement extends Components.RuxIconCardMembership, HTMLStencilElement { } var HTMLRuxIconCardMembershipElement: { prototype: HTMLRuxIconCardMembershipElement; new (): HTMLRuxIconCardMembershipElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCardTravelElement extends Components.RuxIconCardTravel, HTMLStencilElement { } var HTMLRuxIconCardTravelElement: { prototype: HTMLRuxIconCardTravelElement; new (): HTMLRuxIconCardTravelElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCasinoElement extends Components.RuxIconCasino, HTMLStencilElement { } var HTMLRuxIconCasinoElement: { prototype: HTMLRuxIconCasinoElement; new (): HTMLRuxIconCasinoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCastElement extends Components.RuxIconCast, HTMLStencilElement { } var HTMLRuxIconCastElement: { prototype: HTMLRuxIconCastElement; new (): HTMLRuxIconCastElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCastConnectedElement extends Components.RuxIconCastConnected, HTMLStencilElement { } var HTMLRuxIconCastConnectedElement: { prototype: HTMLRuxIconCastConnectedElement; new (): HTMLRuxIconCastConnectedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCastForEducationElement extends Components.RuxIconCastForEducation, HTMLStencilElement { } var HTMLRuxIconCastForEducationElement: { prototype: HTMLRuxIconCastForEducationElement; new (): HTMLRuxIconCastForEducationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCategoryElement extends Components.RuxIconCategory, HTMLStencilElement { } var HTMLRuxIconCategoryElement: { prototype: HTMLRuxIconCategoryElement; new (): HTMLRuxIconCategoryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCellWifiElement extends Components.RuxIconCellWifi, HTMLStencilElement { } var HTMLRuxIconCellWifiElement: { prototype: HTMLRuxIconCellWifiElement; new (): HTMLRuxIconCellWifiElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCenterFocusStrongElement extends Components.RuxIconCenterFocusStrong, HTMLStencilElement { } var HTMLRuxIconCenterFocusStrongElement: { prototype: HTMLRuxIconCenterFocusStrongElement; new (): HTMLRuxIconCenterFocusStrongElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCenterFocusWeakElement extends Components.RuxIconCenterFocusWeak, HTMLStencilElement { } var HTMLRuxIconCenterFocusWeakElement: { prototype: HTMLRuxIconCenterFocusWeakElement; new (): HTMLRuxIconCenterFocusWeakElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChangeHistoryElement extends Components.RuxIconChangeHistory, HTMLStencilElement { } var HTMLRuxIconChangeHistoryElement: { prototype: HTMLRuxIconChangeHistoryElement; new (): HTMLRuxIconChangeHistoryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChatElement extends Components.RuxIconChat, HTMLStencilElement { } var HTMLRuxIconChatElement: { prototype: HTMLRuxIconChatElement; new (): HTMLRuxIconChatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChatBubbleElement extends Components.RuxIconChatBubble, HTMLStencilElement { } var HTMLRuxIconChatBubbleElement: { prototype: HTMLRuxIconChatBubbleElement; new (): HTMLRuxIconChatBubbleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChatBubbleOutlineElement extends Components.RuxIconChatBubbleOutline, HTMLStencilElement { } var HTMLRuxIconChatBubbleOutlineElement: { prototype: HTMLRuxIconChatBubbleOutlineElement; new (): HTMLRuxIconChatBubbleOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCheckElement extends Components.RuxIconCheck, HTMLStencilElement { } var HTMLRuxIconCheckElement: { prototype: HTMLRuxIconCheckElement; new (): HTMLRuxIconCheckElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCheckBoxElement extends Components.RuxIconCheckBox, HTMLStencilElement { } var HTMLRuxIconCheckBoxElement: { prototype: HTMLRuxIconCheckBoxElement; new (): HTMLRuxIconCheckBoxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCheckBoxOutlineBlankElement extends Components.RuxIconCheckBoxOutlineBlank, HTMLStencilElement { } var HTMLRuxIconCheckBoxOutlineBlankElement: { prototype: HTMLRuxIconCheckBoxOutlineBlankElement; new (): HTMLRuxIconCheckBoxOutlineBlankElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCheckCircleElement extends Components.RuxIconCheckCircle, HTMLStencilElement { } var HTMLRuxIconCheckCircleElement: { prototype: HTMLRuxIconCheckCircleElement; new (): HTMLRuxIconCheckCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCheckCircleOutlineElement extends Components.RuxIconCheckCircleOutline, HTMLStencilElement { } var HTMLRuxIconCheckCircleOutlineElement: { prototype: HTMLRuxIconCheckCircleOutlineElement; new (): HTMLRuxIconCheckCircleOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChevronLeftElement extends Components.RuxIconChevronLeft, HTMLStencilElement { } var HTMLRuxIconChevronLeftElement: { prototype: HTMLRuxIconChevronLeftElement; new (): HTMLRuxIconChevronLeftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChevronRightElement extends Components.RuxIconChevronRight, HTMLStencilElement { } var HTMLRuxIconChevronRightElement: { prototype: HTMLRuxIconChevronRightElement; new (): HTMLRuxIconChevronRightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChildCareElement extends Components.RuxIconChildCare, HTMLStencilElement { } var HTMLRuxIconChildCareElement: { prototype: HTMLRuxIconChildCareElement; new (): HTMLRuxIconChildCareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChildFriendlyElement extends Components.RuxIconChildFriendly, HTMLStencilElement { } var HTMLRuxIconChildFriendlyElement: { prototype: HTMLRuxIconChildFriendlyElement; new (): HTMLRuxIconChildFriendlyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconChromeReaderModeElement extends Components.RuxIconChromeReaderMode, HTMLStencilElement { } var HTMLRuxIconChromeReaderModeElement: { prototype: HTMLRuxIconChromeReaderModeElement; new (): HTMLRuxIconChromeReaderModeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconClassElement extends Components.RuxIconClass, HTMLStencilElement { } var HTMLRuxIconClassElement: { prototype: HTMLRuxIconClassElement; new (): HTMLRuxIconClassElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconClearElement extends Components.RuxIconClear, HTMLStencilElement { } var HTMLRuxIconClearElement: { prototype: HTMLRuxIconClearElement; new (): HTMLRuxIconClearElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconClearAllElement extends Components.RuxIconClearAll, HTMLStencilElement { } var HTMLRuxIconClearAllElement: { prototype: HTMLRuxIconClearAllElement; new (): HTMLRuxIconClearAllElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloseElement extends Components.RuxIconClose, HTMLStencilElement { } var HTMLRuxIconCloseElement: { prototype: HTMLRuxIconCloseElement; new (): HTMLRuxIconCloseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconClosedCaptionElement extends Components.RuxIconClosedCaption, HTMLStencilElement { } var HTMLRuxIconClosedCaptionElement: { prototype: HTMLRuxIconClosedCaptionElement; new (): HTMLRuxIconClosedCaptionElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloudElement extends Components.RuxIconCloud, HTMLStencilElement { } var HTMLRuxIconCloudElement: { prototype: HTMLRuxIconCloudElement; new (): HTMLRuxIconCloudElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloudCircleElement extends Components.RuxIconCloudCircle, HTMLStencilElement { } var HTMLRuxIconCloudCircleElement: { prototype: HTMLRuxIconCloudCircleElement; new (): HTMLRuxIconCloudCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloudDoneElement extends Components.RuxIconCloudDone, HTMLStencilElement { } var HTMLRuxIconCloudDoneElement: { prototype: HTMLRuxIconCloudDoneElement; new (): HTMLRuxIconCloudDoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloudDownloadElement extends Components.RuxIconCloudDownload, HTMLStencilElement { } var HTMLRuxIconCloudDownloadElement: { prototype: HTMLRuxIconCloudDownloadElement; new (): HTMLRuxIconCloudDownloadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloudOffElement extends Components.RuxIconCloudOff, HTMLStencilElement { } var HTMLRuxIconCloudOffElement: { prototype: HTMLRuxIconCloudOffElement; new (): HTMLRuxIconCloudOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloudQueueElement extends Components.RuxIconCloudQueue, HTMLStencilElement { } var HTMLRuxIconCloudQueueElement: { prototype: HTMLRuxIconCloudQueueElement; new (): HTMLRuxIconCloudQueueElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCloudUploadElement extends Components.RuxIconCloudUpload, HTMLStencilElement { } var HTMLRuxIconCloudUploadElement: { prototype: HTMLRuxIconCloudUploadElement; new (): HTMLRuxIconCloudUploadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCodeElement extends Components.RuxIconCode, HTMLStencilElement { } var HTMLRuxIconCodeElement: { prototype: HTMLRuxIconCodeElement; new (): HTMLRuxIconCodeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCollectionsElement extends Components.RuxIconCollections, HTMLStencilElement { } var HTMLRuxIconCollectionsElement: { prototype: HTMLRuxIconCollectionsElement; new (): HTMLRuxIconCollectionsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCollectionsBookmarkElement extends Components.RuxIconCollectionsBookmark, HTMLStencilElement { } var HTMLRuxIconCollectionsBookmarkElement: { prototype: HTMLRuxIconCollectionsBookmarkElement; new (): HTMLRuxIconCollectionsBookmarkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconColorLensElement extends Components.RuxIconColorLens, HTMLStencilElement { } var HTMLRuxIconColorLensElement: { prototype: HTMLRuxIconColorLensElement; new (): HTMLRuxIconColorLensElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconColorizeElement extends Components.RuxIconColorize, HTMLStencilElement { } var HTMLRuxIconColorizeElement: { prototype: HTMLRuxIconColorizeElement; new (): HTMLRuxIconColorizeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCommentElement extends Components.RuxIconComment, HTMLStencilElement { } var HTMLRuxIconCommentElement: { prototype: HTMLRuxIconCommentElement; new (): HTMLRuxIconCommentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCommuteElement extends Components.RuxIconCommute, HTMLStencilElement { } var HTMLRuxIconCommuteElement: { prototype: HTMLRuxIconCommuteElement; new (): HTMLRuxIconCommuteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCompareElement extends Components.RuxIconCompare, HTMLStencilElement { } var HTMLRuxIconCompareElement: { prototype: HTMLRuxIconCompareElement; new (): HTMLRuxIconCompareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCompareArrowsElement extends Components.RuxIconCompareArrows, HTMLStencilElement { } var HTMLRuxIconCompareArrowsElement: { prototype: HTMLRuxIconCompareArrowsElement; new (): HTMLRuxIconCompareArrowsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCompassCalibrationElement extends Components.RuxIconCompassCalibration, HTMLStencilElement { } var HTMLRuxIconCompassCalibrationElement: { prototype: HTMLRuxIconCompassCalibrationElement; new (): HTMLRuxIconCompassCalibrationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconComputerElement extends Components.RuxIconComputer, HTMLStencilElement { } var HTMLRuxIconComputerElement: { prototype: HTMLRuxIconComputerElement; new (): HTMLRuxIconComputerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconConfirmationNumberElement extends Components.RuxIconConfirmationNumber, HTMLStencilElement { } var HTMLRuxIconConfirmationNumberElement: { prototype: HTMLRuxIconConfirmationNumberElement; new (): HTMLRuxIconConfirmationNumberElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconContactMailElement extends Components.RuxIconContactMail, HTMLStencilElement { } var HTMLRuxIconContactMailElement: { prototype: HTMLRuxIconContactMailElement; new (): HTMLRuxIconContactMailElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconContactPhoneElement extends Components.RuxIconContactPhone, HTMLStencilElement { } var HTMLRuxIconContactPhoneElement: { prototype: HTMLRuxIconContactPhoneElement; new (): HTMLRuxIconContactPhoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconContactSupportElement extends Components.RuxIconContactSupport, HTMLStencilElement { } var HTMLRuxIconContactSupportElement: { prototype: HTMLRuxIconContactSupportElement; new (): HTMLRuxIconContactSupportElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconContactsElement extends Components.RuxIconContacts, HTMLStencilElement { } var HTMLRuxIconContactsElement: { prototype: HTMLRuxIconContactsElement; new (): HTMLRuxIconContactsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconControlCameraElement extends Components.RuxIconControlCamera, HTMLStencilElement { } var HTMLRuxIconControlCameraElement: { prototype: HTMLRuxIconControlCameraElement; new (): HTMLRuxIconControlCameraElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconControlPointElement extends Components.RuxIconControlPoint, HTMLStencilElement { } var HTMLRuxIconControlPointElement: { prototype: HTMLRuxIconControlPointElement; new (): HTMLRuxIconControlPointElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconControlPointDuplicateElement extends Components.RuxIconControlPointDuplicate, HTMLStencilElement { } var HTMLRuxIconControlPointDuplicateElement: { prototype: HTMLRuxIconControlPointDuplicateElement; new (): HTMLRuxIconControlPointDuplicateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCopyrightElement extends Components.RuxIconCopyright, HTMLStencilElement { } var HTMLRuxIconCopyrightElement: { prototype: HTMLRuxIconCopyrightElement; new (): HTMLRuxIconCopyrightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCreateElement extends Components.RuxIconCreate, HTMLStencilElement { } var HTMLRuxIconCreateElement: { prototype: HTMLRuxIconCreateElement; new (): HTMLRuxIconCreateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCreateNewFolderElement extends Components.RuxIconCreateNewFolder, HTMLStencilElement { } var HTMLRuxIconCreateNewFolderElement: { prototype: HTMLRuxIconCreateNewFolderElement; new (): HTMLRuxIconCreateNewFolderElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCreditCardElement extends Components.RuxIconCreditCard, HTMLStencilElement { } var HTMLRuxIconCreditCardElement: { prototype: HTMLRuxIconCreditCardElement; new (): HTMLRuxIconCreditCardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropElement extends Components.RuxIconCrop, HTMLStencilElement { } var HTMLRuxIconCropElement: { prototype: HTMLRuxIconCropElement; new (): HTMLRuxIconCropElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCrop169Element extends Components.RuxIconCrop169, HTMLStencilElement { } var HTMLRuxIconCrop169Element: { prototype: HTMLRuxIconCrop169Element; new (): HTMLRuxIconCrop169Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCrop32Element extends Components.RuxIconCrop32, HTMLStencilElement { } var HTMLRuxIconCrop32Element: { prototype: HTMLRuxIconCrop32Element; new (): HTMLRuxIconCrop32Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCrop54Element extends Components.RuxIconCrop54, HTMLStencilElement { } var HTMLRuxIconCrop54Element: { prototype: HTMLRuxIconCrop54Element; new (): HTMLRuxIconCrop54Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCrop75Element extends Components.RuxIconCrop75, HTMLStencilElement { } var HTMLRuxIconCrop75Element: { prototype: HTMLRuxIconCrop75Element; new (): HTMLRuxIconCrop75Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropDinElement extends Components.RuxIconCropDin, HTMLStencilElement { } var HTMLRuxIconCropDinElement: { prototype: HTMLRuxIconCropDinElement; new (): HTMLRuxIconCropDinElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropFreeElement extends Components.RuxIconCropFree, HTMLStencilElement { } var HTMLRuxIconCropFreeElement: { prototype: HTMLRuxIconCropFreeElement; new (): HTMLRuxIconCropFreeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropLandscapeElement extends Components.RuxIconCropLandscape, HTMLStencilElement { } var HTMLRuxIconCropLandscapeElement: { prototype: HTMLRuxIconCropLandscapeElement; new (): HTMLRuxIconCropLandscapeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropOriginalElement extends Components.RuxIconCropOriginal, HTMLStencilElement { } var HTMLRuxIconCropOriginalElement: { prototype: HTMLRuxIconCropOriginalElement; new (): HTMLRuxIconCropOriginalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropPortraitElement extends Components.RuxIconCropPortrait, HTMLStencilElement { } var HTMLRuxIconCropPortraitElement: { prototype: HTMLRuxIconCropPortraitElement; new (): HTMLRuxIconCropPortraitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropRotateElement extends Components.RuxIconCropRotate, HTMLStencilElement { } var HTMLRuxIconCropRotateElement: { prototype: HTMLRuxIconCropRotateElement; new (): HTMLRuxIconCropRotateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconCropSquareElement extends Components.RuxIconCropSquare, HTMLStencilElement { } var HTMLRuxIconCropSquareElement: { prototype: HTMLRuxIconCropSquareElement; new (): HTMLRuxIconCropSquareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDashboardElement extends Components.RuxIconDashboard, HTMLStencilElement { } var HTMLRuxIconDashboardElement: { prototype: HTMLRuxIconDashboardElement; new (): HTMLRuxIconDashboardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDataUsageElement extends Components.RuxIconDataUsage, HTMLStencilElement { } var HTMLRuxIconDataUsageElement: { prototype: HTMLRuxIconDataUsageElement; new (): HTMLRuxIconDataUsageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDateRangeElement extends Components.RuxIconDateRange, HTMLStencilElement { } var HTMLRuxIconDateRangeElement: { prototype: HTMLRuxIconDateRangeElement; new (): HTMLRuxIconDateRangeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDehazeElement extends Components.RuxIconDehaze, HTMLStencilElement { } var HTMLRuxIconDehazeElement: { prototype: HTMLRuxIconDehazeElement; new (): HTMLRuxIconDehazeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeleteElement extends Components.RuxIconDelete, HTMLStencilElement { } var HTMLRuxIconDeleteElement: { prototype: HTMLRuxIconDeleteElement; new (): HTMLRuxIconDeleteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeleteForeverElement extends Components.RuxIconDeleteForever, HTMLStencilElement { } var HTMLRuxIconDeleteForeverElement: { prototype: HTMLRuxIconDeleteForeverElement; new (): HTMLRuxIconDeleteForeverElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeleteOutlineElement extends Components.RuxIconDeleteOutline, HTMLStencilElement { } var HTMLRuxIconDeleteOutlineElement: { prototype: HTMLRuxIconDeleteOutlineElement; new (): HTMLRuxIconDeleteOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeleteSweepElement extends Components.RuxIconDeleteSweep, HTMLStencilElement { } var HTMLRuxIconDeleteSweepElement: { prototype: HTMLRuxIconDeleteSweepElement; new (): HTMLRuxIconDeleteSweepElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDepartureBoardElement extends Components.RuxIconDepartureBoard, HTMLStencilElement { } var HTMLRuxIconDepartureBoardElement: { prototype: HTMLRuxIconDepartureBoardElement; new (): HTMLRuxIconDepartureBoardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDescriptionElement extends Components.RuxIconDescription, HTMLStencilElement { } var HTMLRuxIconDescriptionElement: { prototype: HTMLRuxIconDescriptionElement; new (): HTMLRuxIconDescriptionElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDesktopAccessDisabledElement extends Components.RuxIconDesktopAccessDisabled, HTMLStencilElement { } var HTMLRuxIconDesktopAccessDisabledElement: { prototype: HTMLRuxIconDesktopAccessDisabledElement; new (): HTMLRuxIconDesktopAccessDisabledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDesktopMacElement extends Components.RuxIconDesktopMac, HTMLStencilElement { } var HTMLRuxIconDesktopMacElement: { prototype: HTMLRuxIconDesktopMacElement; new (): HTMLRuxIconDesktopMacElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDesktopWindowsElement extends Components.RuxIconDesktopWindows, HTMLStencilElement { } var HTMLRuxIconDesktopWindowsElement: { prototype: HTMLRuxIconDesktopWindowsElement; new (): HTMLRuxIconDesktopWindowsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDetailsElement extends Components.RuxIconDetails, HTMLStencilElement { } var HTMLRuxIconDetailsElement: { prototype: HTMLRuxIconDetailsElement; new (): HTMLRuxIconDetailsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeveloperBoardElement extends Components.RuxIconDeveloperBoard, HTMLStencilElement { } var HTMLRuxIconDeveloperBoardElement: { prototype: HTMLRuxIconDeveloperBoardElement; new (): HTMLRuxIconDeveloperBoardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeveloperModeElement extends Components.RuxIconDeveloperMode, HTMLStencilElement { } var HTMLRuxIconDeveloperModeElement: { prototype: HTMLRuxIconDeveloperModeElement; new (): HTMLRuxIconDeveloperModeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeviceHubElement extends Components.RuxIconDeviceHub, HTMLStencilElement { } var HTMLRuxIconDeviceHubElement: { prototype: HTMLRuxIconDeviceHubElement; new (): HTMLRuxIconDeviceHubElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDeviceUnknownElement extends Components.RuxIconDeviceUnknown, HTMLStencilElement { } var HTMLRuxIconDeviceUnknownElement: { prototype: HTMLRuxIconDeviceUnknownElement; new (): HTMLRuxIconDeviceUnknownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDevicesElement extends Components.RuxIconDevices, HTMLStencilElement { } var HTMLRuxIconDevicesElement: { prototype: HTMLRuxIconDevicesElement; new (): HTMLRuxIconDevicesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDevicesOtherElement extends Components.RuxIconDevicesOther, HTMLStencilElement { } var HTMLRuxIconDevicesOtherElement: { prototype: HTMLRuxIconDevicesOtherElement; new (): HTMLRuxIconDevicesOtherElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDialerSipElement extends Components.RuxIconDialerSip, HTMLStencilElement { } var HTMLRuxIconDialerSipElement: { prototype: HTMLRuxIconDialerSipElement; new (): HTMLRuxIconDialerSipElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDialpadElement extends Components.RuxIconDialpad, HTMLStencilElement { } var HTMLRuxIconDialpadElement: { prototype: HTMLRuxIconDialpadElement; new (): HTMLRuxIconDialpadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsElement extends Components.RuxIconDirections, HTMLStencilElement { } var HTMLRuxIconDirectionsElement: { prototype: HTMLRuxIconDirectionsElement; new (): HTMLRuxIconDirectionsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsBikeElement extends Components.RuxIconDirectionsBike, HTMLStencilElement { } var HTMLRuxIconDirectionsBikeElement: { prototype: HTMLRuxIconDirectionsBikeElement; new (): HTMLRuxIconDirectionsBikeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsBoatElement extends Components.RuxIconDirectionsBoat, HTMLStencilElement { } var HTMLRuxIconDirectionsBoatElement: { prototype: HTMLRuxIconDirectionsBoatElement; new (): HTMLRuxIconDirectionsBoatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsBusElement extends Components.RuxIconDirectionsBus, HTMLStencilElement { } var HTMLRuxIconDirectionsBusElement: { prototype: HTMLRuxIconDirectionsBusElement; new (): HTMLRuxIconDirectionsBusElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsCarElement extends Components.RuxIconDirectionsCar, HTMLStencilElement { } var HTMLRuxIconDirectionsCarElement: { prototype: HTMLRuxIconDirectionsCarElement; new (): HTMLRuxIconDirectionsCarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsRailwayElement extends Components.RuxIconDirectionsRailway, HTMLStencilElement { } var HTMLRuxIconDirectionsRailwayElement: { prototype: HTMLRuxIconDirectionsRailwayElement; new (): HTMLRuxIconDirectionsRailwayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsRunElement extends Components.RuxIconDirectionsRun, HTMLStencilElement { } var HTMLRuxIconDirectionsRunElement: { prototype: HTMLRuxIconDirectionsRunElement; new (): HTMLRuxIconDirectionsRunElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsSubwayElement extends Components.RuxIconDirectionsSubway, HTMLStencilElement { } var HTMLRuxIconDirectionsSubwayElement: { prototype: HTMLRuxIconDirectionsSubwayElement; new (): HTMLRuxIconDirectionsSubwayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsTransitElement extends Components.RuxIconDirectionsTransit, HTMLStencilElement { } var HTMLRuxIconDirectionsTransitElement: { prototype: HTMLRuxIconDirectionsTransitElement; new (): HTMLRuxIconDirectionsTransitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDirectionsWalkElement extends Components.RuxIconDirectionsWalk, HTMLStencilElement { } var HTMLRuxIconDirectionsWalkElement: { prototype: HTMLRuxIconDirectionsWalkElement; new (): HTMLRuxIconDirectionsWalkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDiscFullElement extends Components.RuxIconDiscFull, HTMLStencilElement { } var HTMLRuxIconDiscFullElement: { prototype: HTMLRuxIconDiscFullElement; new (): HTMLRuxIconDiscFullElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDnsElement extends Components.RuxIconDns, HTMLStencilElement { } var HTMLRuxIconDnsElement: { prototype: HTMLRuxIconDnsElement; new (): HTMLRuxIconDnsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDockElement extends Components.RuxIconDock, HTMLStencilElement { } var HTMLRuxIconDockElement: { prototype: HTMLRuxIconDockElement; new (): HTMLRuxIconDockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDomainElement extends Components.RuxIconDomain, HTMLStencilElement { } var HTMLRuxIconDomainElement: { prototype: HTMLRuxIconDomainElement; new (): HTMLRuxIconDomainElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDomainDisabledElement extends Components.RuxIconDomainDisabled, HTMLStencilElement { } var HTMLRuxIconDomainDisabledElement: { prototype: HTMLRuxIconDomainDisabledElement; new (): HTMLRuxIconDomainDisabledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDoneElement extends Components.RuxIconDone, HTMLStencilElement { } var HTMLRuxIconDoneElement: { prototype: HTMLRuxIconDoneElement; new (): HTMLRuxIconDoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDoneAllElement extends Components.RuxIconDoneAll, HTMLStencilElement { } var HTMLRuxIconDoneAllElement: { prototype: HTMLRuxIconDoneAllElement; new (): HTMLRuxIconDoneAllElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDoneOutlineElement extends Components.RuxIconDoneOutline, HTMLStencilElement { } var HTMLRuxIconDoneOutlineElement: { prototype: HTMLRuxIconDoneOutlineElement; new (): HTMLRuxIconDoneOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDonutLargeElement extends Components.RuxIconDonutLarge, HTMLStencilElement { } var HTMLRuxIconDonutLargeElement: { prototype: HTMLRuxIconDonutLargeElement; new (): HTMLRuxIconDonutLargeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDonutSmallElement extends Components.RuxIconDonutSmall, HTMLStencilElement { } var HTMLRuxIconDonutSmallElement: { prototype: HTMLRuxIconDonutSmallElement; new (): HTMLRuxIconDonutSmallElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDraftsElement extends Components.RuxIconDrafts, HTMLStencilElement { } var HTMLRuxIconDraftsElement: { prototype: HTMLRuxIconDraftsElement; new (): HTMLRuxIconDraftsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDragHandleElement extends Components.RuxIconDragHandle, HTMLStencilElement { } var HTMLRuxIconDragHandleElement: { prototype: HTMLRuxIconDragHandleElement; new (): HTMLRuxIconDragHandleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDragIndicatorElement extends Components.RuxIconDragIndicator, HTMLStencilElement { } var HTMLRuxIconDragIndicatorElement: { prototype: HTMLRuxIconDragIndicatorElement; new (): HTMLRuxIconDragIndicatorElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDriveEtaElement extends Components.RuxIconDriveEta, HTMLStencilElement { } var HTMLRuxIconDriveEtaElement: { prototype: HTMLRuxIconDriveEtaElement; new (): HTMLRuxIconDriveEtaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDuoElement extends Components.RuxIconDuo, HTMLStencilElement { } var HTMLRuxIconDuoElement: { prototype: HTMLRuxIconDuoElement; new (): HTMLRuxIconDuoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconDvrElement extends Components.RuxIconDvr, HTMLStencilElement { } var HTMLRuxIconDvrElement: { prototype: HTMLRuxIconDvrElement; new (): HTMLRuxIconDvrElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEditElement extends Components.RuxIconEdit, HTMLStencilElement { } var HTMLRuxIconEditElement: { prototype: HTMLRuxIconEditElement; new (): HTMLRuxIconEditElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEditAttributesElement extends Components.RuxIconEditAttributes, HTMLStencilElement { } var HTMLRuxIconEditAttributesElement: { prototype: HTMLRuxIconEditAttributesElement; new (): HTMLRuxIconEditAttributesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEditLocationElement extends Components.RuxIconEditLocation, HTMLStencilElement { } var HTMLRuxIconEditLocationElement: { prototype: HTMLRuxIconEditLocationElement; new (): HTMLRuxIconEditLocationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEjectElement extends Components.RuxIconEject, HTMLStencilElement { } var HTMLRuxIconEjectElement: { prototype: HTMLRuxIconEjectElement; new (): HTMLRuxIconEjectElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEmailElement extends Components.RuxIconEmail, HTMLStencilElement { } var HTMLRuxIconEmailElement: { prototype: HTMLRuxIconEmailElement; new (): HTMLRuxIconEmailElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEnhancedEncryptionElement extends Components.RuxIconEnhancedEncryption, HTMLStencilElement { } var HTMLRuxIconEnhancedEncryptionElement: { prototype: HTMLRuxIconEnhancedEncryptionElement; new (): HTMLRuxIconEnhancedEncryptionElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEqualizerElement extends Components.RuxIconEqualizer, HTMLStencilElement { } var HTMLRuxIconEqualizerElement: { prototype: HTMLRuxIconEqualizerElement; new (): HTMLRuxIconEqualizerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEquipmentElement extends Components.RuxIconEquipment, HTMLStencilElement { } var HTMLRuxIconEquipmentElement: { prototype: HTMLRuxIconEquipmentElement; new (): HTMLRuxIconEquipmentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconErrorElement extends Components.RuxIconError, HTMLStencilElement { } var HTMLRuxIconErrorElement: { prototype: HTMLRuxIconErrorElement; new (): HTMLRuxIconErrorElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconErrorOutlineElement extends Components.RuxIconErrorOutline, HTMLStencilElement { } var HTMLRuxIconErrorOutlineElement: { prototype: HTMLRuxIconErrorOutlineElement; new (): HTMLRuxIconErrorOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEuroSymbolElement extends Components.RuxIconEuroSymbol, HTMLStencilElement { } var HTMLRuxIconEuroSymbolElement: { prototype: HTMLRuxIconEuroSymbolElement; new (): HTMLRuxIconEuroSymbolElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEvStationElement extends Components.RuxIconEvStation, HTMLStencilElement { } var HTMLRuxIconEvStationElement: { prototype: HTMLRuxIconEvStationElement; new (): HTMLRuxIconEvStationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEventElement extends Components.RuxIconEvent, HTMLStencilElement { } var HTMLRuxIconEventElement: { prototype: HTMLRuxIconEventElement; new (): HTMLRuxIconEventElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEventAvailableElement extends Components.RuxIconEventAvailable, HTMLStencilElement { } var HTMLRuxIconEventAvailableElement: { prototype: HTMLRuxIconEventAvailableElement; new (): HTMLRuxIconEventAvailableElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEventBusyElement extends Components.RuxIconEventBusy, HTMLStencilElement { } var HTMLRuxIconEventBusyElement: { prototype: HTMLRuxIconEventBusyElement; new (): HTMLRuxIconEventBusyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconEventNoteElement extends Components.RuxIconEventNote, HTMLStencilElement { } var HTMLRuxIconEventNoteElement: { prototype: HTMLRuxIconEventNoteElement; new (): HTMLRuxIconEventNoteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExitToAppElement extends Components.RuxIconExitToApp, HTMLStencilElement { } var HTMLRuxIconExitToAppElement: { prototype: HTMLRuxIconExitToAppElement; new (): HTMLRuxIconExitToAppElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExpandLessElement extends Components.RuxIconExpandLess, HTMLStencilElement { } var HTMLRuxIconExpandLessElement: { prototype: HTMLRuxIconExpandLessElement; new (): HTMLRuxIconExpandLessElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExpandMoreElement extends Components.RuxIconExpandMore, HTMLStencilElement { } var HTMLRuxIconExpandMoreElement: { prototype: HTMLRuxIconExpandMoreElement; new (): HTMLRuxIconExpandMoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExplicitElement extends Components.RuxIconExplicit, HTMLStencilElement { } var HTMLRuxIconExplicitElement: { prototype: HTMLRuxIconExplicitElement; new (): HTMLRuxIconExplicitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExploreElement extends Components.RuxIconExplore, HTMLStencilElement { } var HTMLRuxIconExploreElement: { prototype: HTMLRuxIconExploreElement; new (): HTMLRuxIconExploreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExploreOffElement extends Components.RuxIconExploreOff, HTMLStencilElement { } var HTMLRuxIconExploreOffElement: { prototype: HTMLRuxIconExploreOffElement; new (): HTMLRuxIconExploreOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExposureElement extends Components.RuxIconExposure, HTMLStencilElement { } var HTMLRuxIconExposureElement: { prototype: HTMLRuxIconExposureElement; new (): HTMLRuxIconExposureElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExposureNeg1Element extends Components.RuxIconExposureNeg1, HTMLStencilElement { } var HTMLRuxIconExposureNeg1Element: { prototype: HTMLRuxIconExposureNeg1Element; new (): HTMLRuxIconExposureNeg1Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExposureNeg2Element extends Components.RuxIconExposureNeg2, HTMLStencilElement { } var HTMLRuxIconExposureNeg2Element: { prototype: HTMLRuxIconExposureNeg2Element; new (): HTMLRuxIconExposureNeg2Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExposurePlus1Element extends Components.RuxIconExposurePlus1, HTMLStencilElement { } var HTMLRuxIconExposurePlus1Element: { prototype: HTMLRuxIconExposurePlus1Element; new (): HTMLRuxIconExposurePlus1Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExposurePlus2Element extends Components.RuxIconExposurePlus2, HTMLStencilElement { } var HTMLRuxIconExposurePlus2Element: { prototype: HTMLRuxIconExposurePlus2Element; new (): HTMLRuxIconExposurePlus2Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExposureZeroElement extends Components.RuxIconExposureZero, HTMLStencilElement { } var HTMLRuxIconExposureZeroElement: { prototype: HTMLRuxIconExposureZeroElement; new (): HTMLRuxIconExposureZeroElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconExtensionElement extends Components.RuxIconExtension, HTMLStencilElement { } var HTMLRuxIconExtensionElement: { prototype: HTMLRuxIconExtensionElement; new (): HTMLRuxIconExtensionElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFaceElement extends Components.RuxIconFace, HTMLStencilElement { } var HTMLRuxIconFaceElement: { prototype: HTMLRuxIconFaceElement; new (): HTMLRuxIconFaceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFastForwardElement extends Components.RuxIconFastForward, HTMLStencilElement { } var HTMLRuxIconFastForwardElement: { prototype: HTMLRuxIconFastForwardElement; new (): HTMLRuxIconFastForwardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFastRewindElement extends Components.RuxIconFastRewind, HTMLStencilElement { } var HTMLRuxIconFastRewindElement: { prototype: HTMLRuxIconFastRewindElement; new (): HTMLRuxIconFastRewindElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFastfoodElement extends Components.RuxIconFastfood, HTMLStencilElement { } var HTMLRuxIconFastfoodElement: { prototype: HTMLRuxIconFastfoodElement; new (): HTMLRuxIconFastfoodElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFavoriteElement extends Components.RuxIconFavorite, HTMLStencilElement { } var HTMLRuxIconFavoriteElement: { prototype: HTMLRuxIconFavoriteElement; new (): HTMLRuxIconFavoriteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFavoriteBorderElement extends Components.RuxIconFavoriteBorder, HTMLStencilElement { } var HTMLRuxIconFavoriteBorderElement: { prototype: HTMLRuxIconFavoriteBorderElement; new (): HTMLRuxIconFavoriteBorderElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFeaturedPlayListElement extends Components.RuxIconFeaturedPlayList, HTMLStencilElement { } var HTMLRuxIconFeaturedPlayListElement: { prototype: HTMLRuxIconFeaturedPlayListElement; new (): HTMLRuxIconFeaturedPlayListElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFeaturedVideoElement extends Components.RuxIconFeaturedVideo, HTMLStencilElement { } var HTMLRuxIconFeaturedVideoElement: { prototype: HTMLRuxIconFeaturedVideoElement; new (): HTMLRuxIconFeaturedVideoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFeedbackElement extends Components.RuxIconFeedback, HTMLStencilElement { } var HTMLRuxIconFeedbackElement: { prototype: HTMLRuxIconFeedbackElement; new (): HTMLRuxIconFeedbackElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFiberDvrElement extends Components.RuxIconFiberDvr, HTMLStencilElement { } var HTMLRuxIconFiberDvrElement: { prototype: HTMLRuxIconFiberDvrElement; new (): HTMLRuxIconFiberDvrElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFiberManualRecordElement extends Components.RuxIconFiberManualRecord, HTMLStencilElement { } var HTMLRuxIconFiberManualRecordElement: { prototype: HTMLRuxIconFiberManualRecordElement; new (): HTMLRuxIconFiberManualRecordElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFiberNewElement extends Components.RuxIconFiberNew, HTMLStencilElement { } var HTMLRuxIconFiberNewElement: { prototype: HTMLRuxIconFiberNewElement; new (): HTMLRuxIconFiberNewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFiberPinElement extends Components.RuxIconFiberPin, HTMLStencilElement { } var HTMLRuxIconFiberPinElement: { prototype: HTMLRuxIconFiberPinElement; new (): HTMLRuxIconFiberPinElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFiberSmartRecordElement extends Components.RuxIconFiberSmartRecord, HTMLStencilElement { } var HTMLRuxIconFiberSmartRecordElement: { prototype: HTMLRuxIconFiberSmartRecordElement; new (): HTMLRuxIconFiberSmartRecordElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFileCopyElement extends Components.RuxIconFileCopy, HTMLStencilElement { } var HTMLRuxIconFileCopyElement: { prototype: HTMLRuxIconFileCopyElement; new (): HTMLRuxIconFileCopyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterElement extends Components.RuxIconFilter, HTMLStencilElement { } var HTMLRuxIconFilterElement: { prototype: HTMLRuxIconFilterElement; new (): HTMLRuxIconFilterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter1Element extends Components.RuxIconFilter1, HTMLStencilElement { } var HTMLRuxIconFilter1Element: { prototype: HTMLRuxIconFilter1Element; new (): HTMLRuxIconFilter1Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter2Element extends Components.RuxIconFilter2, HTMLStencilElement { } var HTMLRuxIconFilter2Element: { prototype: HTMLRuxIconFilter2Element; new (): HTMLRuxIconFilter2Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter3Element extends Components.RuxIconFilter3, HTMLStencilElement { } var HTMLRuxIconFilter3Element: { prototype: HTMLRuxIconFilter3Element; new (): HTMLRuxIconFilter3Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter4Element extends Components.RuxIconFilter4, HTMLStencilElement { } var HTMLRuxIconFilter4Element: { prototype: HTMLRuxIconFilter4Element; new (): HTMLRuxIconFilter4Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter5Element extends Components.RuxIconFilter5, HTMLStencilElement { } var HTMLRuxIconFilter5Element: { prototype: HTMLRuxIconFilter5Element; new (): HTMLRuxIconFilter5Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter6Element extends Components.RuxIconFilter6, HTMLStencilElement { } var HTMLRuxIconFilter6Element: { prototype: HTMLRuxIconFilter6Element; new (): HTMLRuxIconFilter6Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter7Element extends Components.RuxIconFilter7, HTMLStencilElement { } var HTMLRuxIconFilter7Element: { prototype: HTMLRuxIconFilter7Element; new (): HTMLRuxIconFilter7Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter8Element extends Components.RuxIconFilter8, HTMLStencilElement { } var HTMLRuxIconFilter8Element: { prototype: HTMLRuxIconFilter8Element; new (): HTMLRuxIconFilter8Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter9Element extends Components.RuxIconFilter9, HTMLStencilElement { } var HTMLRuxIconFilter9Element: { prototype: HTMLRuxIconFilter9Element; new (): HTMLRuxIconFilter9Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilter9PlusElement extends Components.RuxIconFilter9Plus, HTMLStencilElement { } var HTMLRuxIconFilter9PlusElement: { prototype: HTMLRuxIconFilter9PlusElement; new (): HTMLRuxIconFilter9PlusElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterBAndWElement extends Components.RuxIconFilterBAndW, HTMLStencilElement { } var HTMLRuxIconFilterBAndWElement: { prototype: HTMLRuxIconFilterBAndWElement; new (): HTMLRuxIconFilterBAndWElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterCenterFocusElement extends Components.RuxIconFilterCenterFocus, HTMLStencilElement { } var HTMLRuxIconFilterCenterFocusElement: { prototype: HTMLRuxIconFilterCenterFocusElement; new (): HTMLRuxIconFilterCenterFocusElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterDramaElement extends Components.RuxIconFilterDrama, HTMLStencilElement { } var HTMLRuxIconFilterDramaElement: { prototype: HTMLRuxIconFilterDramaElement; new (): HTMLRuxIconFilterDramaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterFramesElement extends Components.RuxIconFilterFrames, HTMLStencilElement { } var HTMLRuxIconFilterFramesElement: { prototype: HTMLRuxIconFilterFramesElement; new (): HTMLRuxIconFilterFramesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterHdrElement extends Components.RuxIconFilterHdr, HTMLStencilElement { } var HTMLRuxIconFilterHdrElement: { prototype: HTMLRuxIconFilterHdrElement; new (): HTMLRuxIconFilterHdrElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterListElement extends Components.RuxIconFilterList, HTMLStencilElement { } var HTMLRuxIconFilterListElement: { prototype: HTMLRuxIconFilterListElement; new (): HTMLRuxIconFilterListElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterNoneElement extends Components.RuxIconFilterNone, HTMLStencilElement { } var HTMLRuxIconFilterNoneElement: { prototype: HTMLRuxIconFilterNoneElement; new (): HTMLRuxIconFilterNoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterTiltShiftElement extends Components.RuxIconFilterTiltShift, HTMLStencilElement { } var HTMLRuxIconFilterTiltShiftElement: { prototype: HTMLRuxIconFilterTiltShiftElement; new (): HTMLRuxIconFilterTiltShiftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFilterVintageElement extends Components.RuxIconFilterVintage, HTMLStencilElement { } var HTMLRuxIconFilterVintageElement: { prototype: HTMLRuxIconFilterVintageElement; new (): HTMLRuxIconFilterVintageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFindInPageElement extends Components.RuxIconFindInPage, HTMLStencilElement { } var HTMLRuxIconFindInPageElement: { prototype: HTMLRuxIconFindInPageElement; new (): HTMLRuxIconFindInPageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFindReplaceElement extends Components.RuxIconFindReplace, HTMLStencilElement { } var HTMLRuxIconFindReplaceElement: { prototype: HTMLRuxIconFindReplaceElement; new (): HTMLRuxIconFindReplaceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFingerprintElement extends Components.RuxIconFingerprint, HTMLStencilElement { } var HTMLRuxIconFingerprintElement: { prototype: HTMLRuxIconFingerprintElement; new (): HTMLRuxIconFingerprintElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFirstPageElement extends Components.RuxIconFirstPage, HTMLStencilElement { } var HTMLRuxIconFirstPageElement: { prototype: HTMLRuxIconFirstPageElement; new (): HTMLRuxIconFirstPageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFitnessCenterElement extends Components.RuxIconFitnessCenter, HTMLStencilElement { } var HTMLRuxIconFitnessCenterElement: { prototype: HTMLRuxIconFitnessCenterElement; new (): HTMLRuxIconFitnessCenterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlagElement extends Components.RuxIconFlag, HTMLStencilElement { } var HTMLRuxIconFlagElement: { prototype: HTMLRuxIconFlagElement; new (): HTMLRuxIconFlagElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlareElement extends Components.RuxIconFlare, HTMLStencilElement { } var HTMLRuxIconFlareElement: { prototype: HTMLRuxIconFlareElement; new (): HTMLRuxIconFlareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlashAutoElement extends Components.RuxIconFlashAuto, HTMLStencilElement { } var HTMLRuxIconFlashAutoElement: { prototype: HTMLRuxIconFlashAutoElement; new (): HTMLRuxIconFlashAutoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlashOffElement extends Components.RuxIconFlashOff, HTMLStencilElement { } var HTMLRuxIconFlashOffElement: { prototype: HTMLRuxIconFlashOffElement; new (): HTMLRuxIconFlashOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlashOnElement extends Components.RuxIconFlashOn, HTMLStencilElement { } var HTMLRuxIconFlashOnElement: { prototype: HTMLRuxIconFlashOnElement; new (): HTMLRuxIconFlashOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlightElement extends Components.RuxIconFlight, HTMLStencilElement { } var HTMLRuxIconFlightElement: { prototype: HTMLRuxIconFlightElement; new (): HTMLRuxIconFlightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlightLandElement extends Components.RuxIconFlightLand, HTMLStencilElement { } var HTMLRuxIconFlightLandElement: { prototype: HTMLRuxIconFlightLandElement; new (): HTMLRuxIconFlightLandElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlightTakeoffElement extends Components.RuxIconFlightTakeoff, HTMLStencilElement { } var HTMLRuxIconFlightTakeoffElement: { prototype: HTMLRuxIconFlightTakeoffElement; new (): HTMLRuxIconFlightTakeoffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlipElement extends Components.RuxIconFlip, HTMLStencilElement { } var HTMLRuxIconFlipElement: { prototype: HTMLRuxIconFlipElement; new (): HTMLRuxIconFlipElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlipToBackElement extends Components.RuxIconFlipToBack, HTMLStencilElement { } var HTMLRuxIconFlipToBackElement: { prototype: HTMLRuxIconFlipToBackElement; new (): HTMLRuxIconFlipToBackElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFlipToFrontElement extends Components.RuxIconFlipToFront, HTMLStencilElement { } var HTMLRuxIconFlipToFrontElement: { prototype: HTMLRuxIconFlipToFrontElement; new (): HTMLRuxIconFlipToFrontElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFolderElement extends Components.RuxIconFolder, HTMLStencilElement { } var HTMLRuxIconFolderElement: { prototype: HTMLRuxIconFolderElement; new (): HTMLRuxIconFolderElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFolderOpenElement extends Components.RuxIconFolderOpen, HTMLStencilElement { } var HTMLRuxIconFolderOpenElement: { prototype: HTMLRuxIconFolderOpenElement; new (): HTMLRuxIconFolderOpenElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFolderSharedElement extends Components.RuxIconFolderShared, HTMLStencilElement { } var HTMLRuxIconFolderSharedElement: { prototype: HTMLRuxIconFolderSharedElement; new (): HTMLRuxIconFolderSharedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFolderSpecialElement extends Components.RuxIconFolderSpecial, HTMLStencilElement { } var HTMLRuxIconFolderSpecialElement: { prototype: HTMLRuxIconFolderSpecialElement; new (): HTMLRuxIconFolderSpecialElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFontDownloadElement extends Components.RuxIconFontDownload, HTMLStencilElement { } var HTMLRuxIconFontDownloadElement: { prototype: HTMLRuxIconFontDownloadElement; new (): HTMLRuxIconFontDownloadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatAlignCenterElement extends Components.RuxIconFormatAlignCenter, HTMLStencilElement { } var HTMLRuxIconFormatAlignCenterElement: { prototype: HTMLRuxIconFormatAlignCenterElement; new (): HTMLRuxIconFormatAlignCenterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatAlignJustifyElement extends Components.RuxIconFormatAlignJustify, HTMLStencilElement { } var HTMLRuxIconFormatAlignJustifyElement: { prototype: HTMLRuxIconFormatAlignJustifyElement; new (): HTMLRuxIconFormatAlignJustifyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatAlignLeftElement extends Components.RuxIconFormatAlignLeft, HTMLStencilElement { } var HTMLRuxIconFormatAlignLeftElement: { prototype: HTMLRuxIconFormatAlignLeftElement; new (): HTMLRuxIconFormatAlignLeftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatAlignRightElement extends Components.RuxIconFormatAlignRight, HTMLStencilElement { } var HTMLRuxIconFormatAlignRightElement: { prototype: HTMLRuxIconFormatAlignRightElement; new (): HTMLRuxIconFormatAlignRightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatBoldElement extends Components.RuxIconFormatBold, HTMLStencilElement { } var HTMLRuxIconFormatBoldElement: { prototype: HTMLRuxIconFormatBoldElement; new (): HTMLRuxIconFormatBoldElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatClearElement extends Components.RuxIconFormatClear, HTMLStencilElement { } var HTMLRuxIconFormatClearElement: { prototype: HTMLRuxIconFormatClearElement; new (): HTMLRuxIconFormatClearElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatColorFillElement extends Components.RuxIconFormatColorFill, HTMLStencilElement { } var HTMLRuxIconFormatColorFillElement: { prototype: HTMLRuxIconFormatColorFillElement; new (): HTMLRuxIconFormatColorFillElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatColorResetElement extends Components.RuxIconFormatColorReset, HTMLStencilElement { } var HTMLRuxIconFormatColorResetElement: { prototype: HTMLRuxIconFormatColorResetElement; new (): HTMLRuxIconFormatColorResetElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatColorTextElement extends Components.RuxIconFormatColorText, HTMLStencilElement { } var HTMLRuxIconFormatColorTextElement: { prototype: HTMLRuxIconFormatColorTextElement; new (): HTMLRuxIconFormatColorTextElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatIndentDecreaseElement extends Components.RuxIconFormatIndentDecrease, HTMLStencilElement { } var HTMLRuxIconFormatIndentDecreaseElement: { prototype: HTMLRuxIconFormatIndentDecreaseElement; new (): HTMLRuxIconFormatIndentDecreaseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatIndentIncreaseElement extends Components.RuxIconFormatIndentIncrease, HTMLStencilElement { } var HTMLRuxIconFormatIndentIncreaseElement: { prototype: HTMLRuxIconFormatIndentIncreaseElement; new (): HTMLRuxIconFormatIndentIncreaseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatItalicElement extends Components.RuxIconFormatItalic, HTMLStencilElement { } var HTMLRuxIconFormatItalicElement: { prototype: HTMLRuxIconFormatItalicElement; new (): HTMLRuxIconFormatItalicElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatLineSpacingElement extends Components.RuxIconFormatLineSpacing, HTMLStencilElement { } var HTMLRuxIconFormatLineSpacingElement: { prototype: HTMLRuxIconFormatLineSpacingElement; new (): HTMLRuxIconFormatLineSpacingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatListBulletedElement extends Components.RuxIconFormatListBulleted, HTMLStencilElement { } var HTMLRuxIconFormatListBulletedElement: { prototype: HTMLRuxIconFormatListBulletedElement; new (): HTMLRuxIconFormatListBulletedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatListNumberedElement extends Components.RuxIconFormatListNumbered, HTMLStencilElement { } var HTMLRuxIconFormatListNumberedElement: { prototype: HTMLRuxIconFormatListNumberedElement; new (): HTMLRuxIconFormatListNumberedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatListNumberedRtlElement extends Components.RuxIconFormatListNumberedRtl, HTMLStencilElement { } var HTMLRuxIconFormatListNumberedRtlElement: { prototype: HTMLRuxIconFormatListNumberedRtlElement; new (): HTMLRuxIconFormatListNumberedRtlElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatPaintElement extends Components.RuxIconFormatPaint, HTMLStencilElement { } var HTMLRuxIconFormatPaintElement: { prototype: HTMLRuxIconFormatPaintElement; new (): HTMLRuxIconFormatPaintElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatQuoteElement extends Components.RuxIconFormatQuote, HTMLStencilElement { } var HTMLRuxIconFormatQuoteElement: { prototype: HTMLRuxIconFormatQuoteElement; new (): HTMLRuxIconFormatQuoteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatShapesElement extends Components.RuxIconFormatShapes, HTMLStencilElement { } var HTMLRuxIconFormatShapesElement: { prototype: HTMLRuxIconFormatShapesElement; new (): HTMLRuxIconFormatShapesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatSizeElement extends Components.RuxIconFormatSize, HTMLStencilElement { } var HTMLRuxIconFormatSizeElement: { prototype: HTMLRuxIconFormatSizeElement; new (): HTMLRuxIconFormatSizeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatStrikethroughElement extends Components.RuxIconFormatStrikethrough, HTMLStencilElement { } var HTMLRuxIconFormatStrikethroughElement: { prototype: HTMLRuxIconFormatStrikethroughElement; new (): HTMLRuxIconFormatStrikethroughElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatTextdirectionLToRElement extends Components.RuxIconFormatTextdirectionLToR, HTMLStencilElement { } var HTMLRuxIconFormatTextdirectionLToRElement: { prototype: HTMLRuxIconFormatTextdirectionLToRElement; new (): HTMLRuxIconFormatTextdirectionLToRElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatTextdirectionRToLElement extends Components.RuxIconFormatTextdirectionRToL, HTMLStencilElement { } var HTMLRuxIconFormatTextdirectionRToLElement: { prototype: HTMLRuxIconFormatTextdirectionRToLElement; new (): HTMLRuxIconFormatTextdirectionRToLElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFormatUnderlinedElement extends Components.RuxIconFormatUnderlined, HTMLStencilElement { } var HTMLRuxIconFormatUnderlinedElement: { prototype: HTMLRuxIconFormatUnderlinedElement; new (): HTMLRuxIconFormatUnderlinedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconForumElement extends Components.RuxIconForum, HTMLStencilElement { } var HTMLRuxIconForumElement: { prototype: HTMLRuxIconForumElement; new (): HTMLRuxIconForumElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconForwardElement extends Components.RuxIconForward, HTMLStencilElement { } var HTMLRuxIconForwardElement: { prototype: HTMLRuxIconForwardElement; new (): HTMLRuxIconForwardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconForward10Element extends Components.RuxIconForward10, HTMLStencilElement { } var HTMLRuxIconForward10Element: { prototype: HTMLRuxIconForward10Element; new (): HTMLRuxIconForward10Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconForward30Element extends Components.RuxIconForward30, HTMLStencilElement { } var HTMLRuxIconForward30Element: { prototype: HTMLRuxIconForward30Element; new (): HTMLRuxIconForward30Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconForward5Element extends Components.RuxIconForward5, HTMLStencilElement { } var HTMLRuxIconForward5Element: { prototype: HTMLRuxIconForward5Element; new (): HTMLRuxIconForward5Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFreeBreakfastElement extends Components.RuxIconFreeBreakfast, HTMLStencilElement { } var HTMLRuxIconFreeBreakfastElement: { prototype: HTMLRuxIconFreeBreakfastElement; new (): HTMLRuxIconFreeBreakfastElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFullscreenElement extends Components.RuxIconFullscreen, HTMLStencilElement { } var HTMLRuxIconFullscreenElement: { prototype: HTMLRuxIconFullscreenElement; new (): HTMLRuxIconFullscreenElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFullscreenExitElement extends Components.RuxIconFullscreenExit, HTMLStencilElement { } var HTMLRuxIconFullscreenExitElement: { prototype: HTMLRuxIconFullscreenExitElement; new (): HTMLRuxIconFullscreenExitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconFunctionsElement extends Components.RuxIconFunctions, HTMLStencilElement { } var HTMLRuxIconFunctionsElement: { prototype: HTMLRuxIconFunctionsElement; new (): HTMLRuxIconFunctionsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGTranslateElement extends Components.RuxIconGTranslate, HTMLStencilElement { } var HTMLRuxIconGTranslateElement: { prototype: HTMLRuxIconGTranslateElement; new (): HTMLRuxIconGTranslateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGamepadElement extends Components.RuxIconGamepad, HTMLStencilElement { } var HTMLRuxIconGamepadElement: { prototype: HTMLRuxIconGamepadElement; new (): HTMLRuxIconGamepadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGamesElement extends Components.RuxIconGames, HTMLStencilElement { } var HTMLRuxIconGamesElement: { prototype: HTMLRuxIconGamesElement; new (): HTMLRuxIconGamesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGavelElement extends Components.RuxIconGavel, HTMLStencilElement { } var HTMLRuxIconGavelElement: { prototype: HTMLRuxIconGavelElement; new (): HTMLRuxIconGavelElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGestureElement extends Components.RuxIconGesture, HTMLStencilElement { } var HTMLRuxIconGestureElement: { prototype: HTMLRuxIconGestureElement; new (): HTMLRuxIconGestureElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGetAppElement extends Components.RuxIconGetApp, HTMLStencilElement { } var HTMLRuxIconGetAppElement: { prototype: HTMLRuxIconGetAppElement; new (): HTMLRuxIconGetAppElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGifElement extends Components.RuxIconGif, HTMLStencilElement { } var HTMLRuxIconGifElement: { prototype: HTMLRuxIconGifElement; new (): HTMLRuxIconGifElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGolfCourseElement extends Components.RuxIconGolfCourse, HTMLStencilElement { } var HTMLRuxIconGolfCourseElement: { prototype: HTMLRuxIconGolfCourseElement; new (): HTMLRuxIconGolfCourseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGpsFixedElement extends Components.RuxIconGpsFixed, HTMLStencilElement { } var HTMLRuxIconGpsFixedElement: { prototype: HTMLRuxIconGpsFixedElement; new (): HTMLRuxIconGpsFixedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGpsNotFixedElement extends Components.RuxIconGpsNotFixed, HTMLStencilElement { } var HTMLRuxIconGpsNotFixedElement: { prototype: HTMLRuxIconGpsNotFixedElement; new (): HTMLRuxIconGpsNotFixedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGpsOffElement extends Components.RuxIconGpsOff, HTMLStencilElement { } var HTMLRuxIconGpsOffElement: { prototype: HTMLRuxIconGpsOffElement; new (): HTMLRuxIconGpsOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGradeElement extends Components.RuxIconGrade, HTMLStencilElement { } var HTMLRuxIconGradeElement: { prototype: HTMLRuxIconGradeElement; new (): HTMLRuxIconGradeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGradientElement extends Components.RuxIconGradient, HTMLStencilElement { } var HTMLRuxIconGradientElement: { prototype: HTMLRuxIconGradientElement; new (): HTMLRuxIconGradientElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGrainElement extends Components.RuxIconGrain, HTMLStencilElement { } var HTMLRuxIconGrainElement: { prototype: HTMLRuxIconGrainElement; new (): HTMLRuxIconGrainElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGraphicEqElement extends Components.RuxIconGraphicEq, HTMLStencilElement { } var HTMLRuxIconGraphicEqElement: { prototype: HTMLRuxIconGraphicEqElement; new (): HTMLRuxIconGraphicEqElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGridOffElement extends Components.RuxIconGridOff, HTMLStencilElement { } var HTMLRuxIconGridOffElement: { prototype: HTMLRuxIconGridOffElement; new (): HTMLRuxIconGridOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGridOnElement extends Components.RuxIconGridOn, HTMLStencilElement { } var HTMLRuxIconGridOnElement: { prototype: HTMLRuxIconGridOnElement; new (): HTMLRuxIconGridOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGroupElement extends Components.RuxIconGroup, HTMLStencilElement { } var HTMLRuxIconGroupElement: { prototype: HTMLRuxIconGroupElement; new (): HTMLRuxIconGroupElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGroupAddElement extends Components.RuxIconGroupAdd, HTMLStencilElement { } var HTMLRuxIconGroupAddElement: { prototype: HTMLRuxIconGroupAddElement; new (): HTMLRuxIconGroupAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconGroupWorkElement extends Components.RuxIconGroupWork, HTMLStencilElement { } var HTMLRuxIconGroupWorkElement: { prototype: HTMLRuxIconGroupWorkElement; new (): HTMLRuxIconGroupWorkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHardwareElement extends Components.RuxIconHardware, HTMLStencilElement { } var HTMLRuxIconHardwareElement: { prototype: HTMLRuxIconHardwareElement; new (): HTMLRuxIconHardwareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHdElement extends Components.RuxIconHd, HTMLStencilElement { } var HTMLRuxIconHdElement: { prototype: HTMLRuxIconHdElement; new (): HTMLRuxIconHdElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHdrOffElement extends Components.RuxIconHdrOff, HTMLStencilElement { } var HTMLRuxIconHdrOffElement: { prototype: HTMLRuxIconHdrOffElement; new (): HTMLRuxIconHdrOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHdrOnElement extends Components.RuxIconHdrOn, HTMLStencilElement { } var HTMLRuxIconHdrOnElement: { prototype: HTMLRuxIconHdrOnElement; new (): HTMLRuxIconHdrOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHdrStrongElement extends Components.RuxIconHdrStrong, HTMLStencilElement { } var HTMLRuxIconHdrStrongElement: { prototype: HTMLRuxIconHdrStrongElement; new (): HTMLRuxIconHdrStrongElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHdrWeakElement extends Components.RuxIconHdrWeak, HTMLStencilElement { } var HTMLRuxIconHdrWeakElement: { prototype: HTMLRuxIconHdrWeakElement; new (): HTMLRuxIconHdrWeakElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHeadsetElement extends Components.RuxIconHeadset, HTMLStencilElement { } var HTMLRuxIconHeadsetElement: { prototype: HTMLRuxIconHeadsetElement; new (): HTMLRuxIconHeadsetElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHeadsetMicElement extends Components.RuxIconHeadsetMic, HTMLStencilElement { } var HTMLRuxIconHeadsetMicElement: { prototype: HTMLRuxIconHeadsetMicElement; new (): HTMLRuxIconHeadsetMicElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHealingElement extends Components.RuxIconHealing, HTMLStencilElement { } var HTMLRuxIconHealingElement: { prototype: HTMLRuxIconHealingElement; new (): HTMLRuxIconHealingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHearingElement extends Components.RuxIconHearing, HTMLStencilElement { } var HTMLRuxIconHearingElement: { prototype: HTMLRuxIconHearingElement; new (): HTMLRuxIconHearingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHelpElement extends Components.RuxIconHelp, HTMLStencilElement { } var HTMLRuxIconHelpElement: { prototype: HTMLRuxIconHelpElement; new (): HTMLRuxIconHelpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHelpOutlineElement extends Components.RuxIconHelpOutline, HTMLStencilElement { } var HTMLRuxIconHelpOutlineElement: { prototype: HTMLRuxIconHelpOutlineElement; new (): HTMLRuxIconHelpOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHighQualityElement extends Components.RuxIconHighQuality, HTMLStencilElement { } var HTMLRuxIconHighQualityElement: { prototype: HTMLRuxIconHighQualityElement; new (): HTMLRuxIconHighQualityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHighlightElement extends Components.RuxIconHighlight, HTMLStencilElement { } var HTMLRuxIconHighlightElement: { prototype: HTMLRuxIconHighlightElement; new (): HTMLRuxIconHighlightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHighlightOffElement extends Components.RuxIconHighlightOff, HTMLStencilElement { } var HTMLRuxIconHighlightOffElement: { prototype: HTMLRuxIconHighlightOffElement; new (): HTMLRuxIconHighlightOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHistoryElement extends Components.RuxIconHistory, HTMLStencilElement { } var HTMLRuxIconHistoryElement: { prototype: HTMLRuxIconHistoryElement; new (): HTMLRuxIconHistoryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHomeElement extends Components.RuxIconHome, HTMLStencilElement { } var HTMLRuxIconHomeElement: { prototype: HTMLRuxIconHomeElement; new (): HTMLRuxIconHomeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHorizontalSplitElement extends Components.RuxIconHorizontalSplit, HTMLStencilElement { } var HTMLRuxIconHorizontalSplitElement: { prototype: HTMLRuxIconHorizontalSplitElement; new (): HTMLRuxIconHorizontalSplitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHotTubElement extends Components.RuxIconHotTub, HTMLStencilElement { } var HTMLRuxIconHotTubElement: { prototype: HTMLRuxIconHotTubElement; new (): HTMLRuxIconHotTubElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHotelElement extends Components.RuxIconHotel, HTMLStencilElement { } var HTMLRuxIconHotelElement: { prototype: HTMLRuxIconHotelElement; new (): HTMLRuxIconHotelElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHourglassEmptyElement extends Components.RuxIconHourglassEmpty, HTMLStencilElement { } var HTMLRuxIconHourglassEmptyElement: { prototype: HTMLRuxIconHourglassEmptyElement; new (): HTMLRuxIconHourglassEmptyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHourglassFullElement extends Components.RuxIconHourglassFull, HTMLStencilElement { } var HTMLRuxIconHourglassFullElement: { prototype: HTMLRuxIconHourglassFullElement; new (): HTMLRuxIconHourglassFullElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHowToRegElement extends Components.RuxIconHowToReg, HTMLStencilElement { } var HTMLRuxIconHowToRegElement: { prototype: HTMLRuxIconHowToRegElement; new (): HTMLRuxIconHowToRegElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHowToVoteElement extends Components.RuxIconHowToVote, HTMLStencilElement { } var HTMLRuxIconHowToVoteElement: { prototype: HTMLRuxIconHowToVoteElement; new (): HTMLRuxIconHowToVoteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHttpElement extends Components.RuxIconHttp, HTMLStencilElement { } var HTMLRuxIconHttpElement: { prototype: HTMLRuxIconHttpElement; new (): HTMLRuxIconHttpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconHttpsElement extends Components.RuxIconHttps, HTMLStencilElement { } var HTMLRuxIconHttpsElement: { prototype: HTMLRuxIconHttpsElement; new (): HTMLRuxIconHttpsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconImageElement extends Components.RuxIconImage, HTMLStencilElement { } var HTMLRuxIconImageElement: { prototype: HTMLRuxIconImageElement; new (): HTMLRuxIconImageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconImageAspectRatioElement extends Components.RuxIconImageAspectRatio, HTMLStencilElement { } var HTMLRuxIconImageAspectRatioElement: { prototype: HTMLRuxIconImageAspectRatioElement; new (): HTMLRuxIconImageAspectRatioElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconImageSearchElement extends Components.RuxIconImageSearch, HTMLStencilElement { } var HTMLRuxIconImageSearchElement: { prototype: HTMLRuxIconImageSearchElement; new (): HTMLRuxIconImageSearchElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconImportContactsElement extends Components.RuxIconImportContacts, HTMLStencilElement { } var HTMLRuxIconImportContactsElement: { prototype: HTMLRuxIconImportContactsElement; new (): HTMLRuxIconImportContactsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconImportExportElement extends Components.RuxIconImportExport, HTMLStencilElement { } var HTMLRuxIconImportExportElement: { prototype: HTMLRuxIconImportExportElement; new (): HTMLRuxIconImportExportElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconImportantDevicesElement extends Components.RuxIconImportantDevices, HTMLStencilElement { } var HTMLRuxIconImportantDevicesElement: { prototype: HTMLRuxIconImportantDevicesElement; new (): HTMLRuxIconImportantDevicesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInboxElement extends Components.RuxIconInbox, HTMLStencilElement { } var HTMLRuxIconInboxElement: { prototype: HTMLRuxIconInboxElement; new (): HTMLRuxIconInboxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconIndeterminateCheckBoxElement extends Components.RuxIconIndeterminateCheckBox, HTMLStencilElement { } var HTMLRuxIconIndeterminateCheckBoxElement: { prototype: HTMLRuxIconIndeterminateCheckBoxElement; new (): HTMLRuxIconIndeterminateCheckBoxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInfoElement extends Components.RuxIconInfo, HTMLStencilElement { } var HTMLRuxIconInfoElement: { prototype: HTMLRuxIconInfoElement; new (): HTMLRuxIconInfoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInputElement extends Components.RuxIconInput, HTMLStencilElement { } var HTMLRuxIconInputElement: { prototype: HTMLRuxIconInputElement; new (): HTMLRuxIconInputElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertChartElement extends Components.RuxIconInsertChart, HTMLStencilElement { } var HTMLRuxIconInsertChartElement: { prototype: HTMLRuxIconInsertChartElement; new (): HTMLRuxIconInsertChartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertChartOutlinedElement extends Components.RuxIconInsertChartOutlined, HTMLStencilElement { } var HTMLRuxIconInsertChartOutlinedElement: { prototype: HTMLRuxIconInsertChartOutlinedElement; new (): HTMLRuxIconInsertChartOutlinedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertCommentElement extends Components.RuxIconInsertComment, HTMLStencilElement { } var HTMLRuxIconInsertCommentElement: { prototype: HTMLRuxIconInsertCommentElement; new (): HTMLRuxIconInsertCommentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertDriveFileElement extends Components.RuxIconInsertDriveFile, HTMLStencilElement { } var HTMLRuxIconInsertDriveFileElement: { prototype: HTMLRuxIconInsertDriveFileElement; new (): HTMLRuxIconInsertDriveFileElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertEmoticonElement extends Components.RuxIconInsertEmoticon, HTMLStencilElement { } var HTMLRuxIconInsertEmoticonElement: { prototype: HTMLRuxIconInsertEmoticonElement; new (): HTMLRuxIconInsertEmoticonElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertInvitationElement extends Components.RuxIconInsertInvitation, HTMLStencilElement { } var HTMLRuxIconInsertInvitationElement: { prototype: HTMLRuxIconInsertInvitationElement; new (): HTMLRuxIconInsertInvitationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertLinkElement extends Components.RuxIconInsertLink, HTMLStencilElement { } var HTMLRuxIconInsertLinkElement: { prototype: HTMLRuxIconInsertLinkElement; new (): HTMLRuxIconInsertLinkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInsertPhotoElement extends Components.RuxIconInsertPhoto, HTMLStencilElement { } var HTMLRuxIconInsertPhotoElement: { prototype: HTMLRuxIconInsertPhotoElement; new (): HTMLRuxIconInsertPhotoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInvertColorsElement extends Components.RuxIconInvertColors, HTMLStencilElement { } var HTMLRuxIconInvertColorsElement: { prototype: HTMLRuxIconInvertColorsElement; new (): HTMLRuxIconInvertColorsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconInvertColorsOffElement extends Components.RuxIconInvertColorsOff, HTMLStencilElement { } var HTMLRuxIconInvertColorsOffElement: { prototype: HTMLRuxIconInvertColorsOffElement; new (): HTMLRuxIconInvertColorsOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconIsoElement extends Components.RuxIconIso, HTMLStencilElement { } var HTMLRuxIconIsoElement: { prototype: HTMLRuxIconIsoElement; new (): HTMLRuxIconIsoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardElement extends Components.RuxIconKeyboard, HTMLStencilElement { } var HTMLRuxIconKeyboardElement: { prototype: HTMLRuxIconKeyboardElement; new (): HTMLRuxIconKeyboardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardArrowDownElement extends Components.RuxIconKeyboardArrowDown, HTMLStencilElement { } var HTMLRuxIconKeyboardArrowDownElement: { prototype: HTMLRuxIconKeyboardArrowDownElement; new (): HTMLRuxIconKeyboardArrowDownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardArrowLeftElement extends Components.RuxIconKeyboardArrowLeft, HTMLStencilElement { } var HTMLRuxIconKeyboardArrowLeftElement: { prototype: HTMLRuxIconKeyboardArrowLeftElement; new (): HTMLRuxIconKeyboardArrowLeftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardArrowRightElement extends Components.RuxIconKeyboardArrowRight, HTMLStencilElement { } var HTMLRuxIconKeyboardArrowRightElement: { prototype: HTMLRuxIconKeyboardArrowRightElement; new (): HTMLRuxIconKeyboardArrowRightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardArrowUpElement extends Components.RuxIconKeyboardArrowUp, HTMLStencilElement { } var HTMLRuxIconKeyboardArrowUpElement: { prototype: HTMLRuxIconKeyboardArrowUpElement; new (): HTMLRuxIconKeyboardArrowUpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardBackspaceElement extends Components.RuxIconKeyboardBackspace, HTMLStencilElement { } var HTMLRuxIconKeyboardBackspaceElement: { prototype: HTMLRuxIconKeyboardBackspaceElement; new (): HTMLRuxIconKeyboardBackspaceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardCapslockElement extends Components.RuxIconKeyboardCapslock, HTMLStencilElement { } var HTMLRuxIconKeyboardCapslockElement: { prototype: HTMLRuxIconKeyboardCapslockElement; new (): HTMLRuxIconKeyboardCapslockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardHideElement extends Components.RuxIconKeyboardHide, HTMLStencilElement { } var HTMLRuxIconKeyboardHideElement: { prototype: HTMLRuxIconKeyboardHideElement; new (): HTMLRuxIconKeyboardHideElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardReturnElement extends Components.RuxIconKeyboardReturn, HTMLStencilElement { } var HTMLRuxIconKeyboardReturnElement: { prototype: HTMLRuxIconKeyboardReturnElement; new (): HTMLRuxIconKeyboardReturnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardTabElement extends Components.RuxIconKeyboardTab, HTMLStencilElement { } var HTMLRuxIconKeyboardTabElement: { prototype: HTMLRuxIconKeyboardTabElement; new (): HTMLRuxIconKeyboardTabElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKeyboardVoiceElement extends Components.RuxIconKeyboardVoice, HTMLStencilElement { } var HTMLRuxIconKeyboardVoiceElement: { prototype: HTMLRuxIconKeyboardVoiceElement; new (): HTMLRuxIconKeyboardVoiceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconKitchenElement extends Components.RuxIconKitchen, HTMLStencilElement { } var HTMLRuxIconKitchenElement: { prototype: HTMLRuxIconKitchenElement; new (): HTMLRuxIconKitchenElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLabelElement extends Components.RuxIconLabel, HTMLStencilElement { } var HTMLRuxIconLabelElement: { prototype: HTMLRuxIconLabelElement; new (): HTMLRuxIconLabelElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLabelImportantElement extends Components.RuxIconLabelImportant, HTMLStencilElement { } var HTMLRuxIconLabelImportantElement: { prototype: HTMLRuxIconLabelImportantElement; new (): HTMLRuxIconLabelImportantElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLabelOffElement extends Components.RuxIconLabelOff, HTMLStencilElement { } var HTMLRuxIconLabelOffElement: { prototype: HTMLRuxIconLabelOffElement; new (): HTMLRuxIconLabelOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLandscapeElement extends Components.RuxIconLandscape, HTMLStencilElement { } var HTMLRuxIconLandscapeElement: { prototype: HTMLRuxIconLandscapeElement; new (): HTMLRuxIconLandscapeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLanguageElement extends Components.RuxIconLanguage, HTMLStencilElement { } var HTMLRuxIconLanguageElement: { prototype: HTMLRuxIconLanguageElement; new (): HTMLRuxIconLanguageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLaptopElement extends Components.RuxIconLaptop, HTMLStencilElement { } var HTMLRuxIconLaptopElement: { prototype: HTMLRuxIconLaptopElement; new (): HTMLRuxIconLaptopElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLaptopChromebookElement extends Components.RuxIconLaptopChromebook, HTMLStencilElement { } var HTMLRuxIconLaptopChromebookElement: { prototype: HTMLRuxIconLaptopChromebookElement; new (): HTMLRuxIconLaptopChromebookElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLaptopMacElement extends Components.RuxIconLaptopMac, HTMLStencilElement { } var HTMLRuxIconLaptopMacElement: { prototype: HTMLRuxIconLaptopMacElement; new (): HTMLRuxIconLaptopMacElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLaptopWindowsElement extends Components.RuxIconLaptopWindows, HTMLStencilElement { } var HTMLRuxIconLaptopWindowsElement: { prototype: HTMLRuxIconLaptopWindowsElement; new (): HTMLRuxIconLaptopWindowsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLastPageElement extends Components.RuxIconLastPage, HTMLStencilElement { } var HTMLRuxIconLastPageElement: { prototype: HTMLRuxIconLastPageElement; new (): HTMLRuxIconLastPageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLaunchElement extends Components.RuxIconLaunch, HTMLStencilElement { } var HTMLRuxIconLaunchElement: { prototype: HTMLRuxIconLaunchElement; new (): HTMLRuxIconLaunchElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLayersElement extends Components.RuxIconLayers, HTMLStencilElement { } var HTMLRuxIconLayersElement: { prototype: HTMLRuxIconLayersElement; new (): HTMLRuxIconLayersElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLayersClearElement extends Components.RuxIconLayersClear, HTMLStencilElement { } var HTMLRuxIconLayersClearElement: { prototype: HTMLRuxIconLayersClearElement; new (): HTMLRuxIconLayersClearElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLeakAddElement extends Components.RuxIconLeakAdd, HTMLStencilElement { } var HTMLRuxIconLeakAddElement: { prototype: HTMLRuxIconLeakAddElement; new (): HTMLRuxIconLeakAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLeakRemoveElement extends Components.RuxIconLeakRemove, HTMLStencilElement { } var HTMLRuxIconLeakRemoveElement: { prototype: HTMLRuxIconLeakRemoveElement; new (): HTMLRuxIconLeakRemoveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLensElement extends Components.RuxIconLens, HTMLStencilElement { } var HTMLRuxIconLensElement: { prototype: HTMLRuxIconLensElement; new (): HTMLRuxIconLensElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLibraryAddElement extends Components.RuxIconLibraryAdd, HTMLStencilElement { } var HTMLRuxIconLibraryAddElement: { prototype: HTMLRuxIconLibraryAddElement; new (): HTMLRuxIconLibraryAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLibraryBooksElement extends Components.RuxIconLibraryBooks, HTMLStencilElement { } var HTMLRuxIconLibraryBooksElement: { prototype: HTMLRuxIconLibraryBooksElement; new (): HTMLRuxIconLibraryBooksElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLibraryMusicElement extends Components.RuxIconLibraryMusic, HTMLStencilElement { } var HTMLRuxIconLibraryMusicElement: { prototype: HTMLRuxIconLibraryMusicElement; new (): HTMLRuxIconLibraryMusicElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLineStyleElement extends Components.RuxIconLineStyle, HTMLStencilElement { } var HTMLRuxIconLineStyleElement: { prototype: HTMLRuxIconLineStyleElement; new (): HTMLRuxIconLineStyleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLineWeightElement extends Components.RuxIconLineWeight, HTMLStencilElement { } var HTMLRuxIconLineWeightElement: { prototype: HTMLRuxIconLineWeightElement; new (): HTMLRuxIconLineWeightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLinearScaleElement extends Components.RuxIconLinearScale, HTMLStencilElement { } var HTMLRuxIconLinearScaleElement: { prototype: HTMLRuxIconLinearScaleElement; new (): HTMLRuxIconLinearScaleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLinkElement extends Components.RuxIconLink, HTMLStencilElement { } var HTMLRuxIconLinkElement: { prototype: HTMLRuxIconLinkElement; new (): HTMLRuxIconLinkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLinkOffElement extends Components.RuxIconLinkOff, HTMLStencilElement { } var HTMLRuxIconLinkOffElement: { prototype: HTMLRuxIconLinkOffElement; new (): HTMLRuxIconLinkOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLinkedCameraElement extends Components.RuxIconLinkedCamera, HTMLStencilElement { } var HTMLRuxIconLinkedCameraElement: { prototype: HTMLRuxIconLinkedCameraElement; new (): HTMLRuxIconLinkedCameraElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconListElement extends Components.RuxIconList, HTMLStencilElement { } var HTMLRuxIconListElement: { prototype: HTMLRuxIconListElement; new (): HTMLRuxIconListElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconListAltElement extends Components.RuxIconListAlt, HTMLStencilElement { } var HTMLRuxIconListAltElement: { prototype: HTMLRuxIconListAltElement; new (): HTMLRuxIconListAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLiveHelpElement extends Components.RuxIconLiveHelp, HTMLStencilElement { } var HTMLRuxIconLiveHelpElement: { prototype: HTMLRuxIconLiveHelpElement; new (): HTMLRuxIconLiveHelpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLiveTvElement extends Components.RuxIconLiveTv, HTMLStencilElement { } var HTMLRuxIconLiveTvElement: { prototype: HTMLRuxIconLiveTvElement; new (): HTMLRuxIconLiveTvElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalActivityElement extends Components.RuxIconLocalActivity, HTMLStencilElement { } var HTMLRuxIconLocalActivityElement: { prototype: HTMLRuxIconLocalActivityElement; new (): HTMLRuxIconLocalActivityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalAirportElement extends Components.RuxIconLocalAirport, HTMLStencilElement { } var HTMLRuxIconLocalAirportElement: { prototype: HTMLRuxIconLocalAirportElement; new (): HTMLRuxIconLocalAirportElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalAtmElement extends Components.RuxIconLocalAtm, HTMLStencilElement { } var HTMLRuxIconLocalAtmElement: { prototype: HTMLRuxIconLocalAtmElement; new (): HTMLRuxIconLocalAtmElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalBarElement extends Components.RuxIconLocalBar, HTMLStencilElement { } var HTMLRuxIconLocalBarElement: { prototype: HTMLRuxIconLocalBarElement; new (): HTMLRuxIconLocalBarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalCafeElement extends Components.RuxIconLocalCafe, HTMLStencilElement { } var HTMLRuxIconLocalCafeElement: { prototype: HTMLRuxIconLocalCafeElement; new (): HTMLRuxIconLocalCafeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalCarWashElement extends Components.RuxIconLocalCarWash, HTMLStencilElement { } var HTMLRuxIconLocalCarWashElement: { prototype: HTMLRuxIconLocalCarWashElement; new (): HTMLRuxIconLocalCarWashElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalConvenienceStoreElement extends Components.RuxIconLocalConvenienceStore, HTMLStencilElement { } var HTMLRuxIconLocalConvenienceStoreElement: { prototype: HTMLRuxIconLocalConvenienceStoreElement; new (): HTMLRuxIconLocalConvenienceStoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalDiningElement extends Components.RuxIconLocalDining, HTMLStencilElement { } var HTMLRuxIconLocalDiningElement: { prototype: HTMLRuxIconLocalDiningElement; new (): HTMLRuxIconLocalDiningElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalDrinkElement extends Components.RuxIconLocalDrink, HTMLStencilElement { } var HTMLRuxIconLocalDrinkElement: { prototype: HTMLRuxIconLocalDrinkElement; new (): HTMLRuxIconLocalDrinkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalGasStationElement extends Components.RuxIconLocalGasStation, HTMLStencilElement { } var HTMLRuxIconLocalGasStationElement: { prototype: HTMLRuxIconLocalGasStationElement; new (): HTMLRuxIconLocalGasStationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalGroceryStoreElement extends Components.RuxIconLocalGroceryStore, HTMLStencilElement { } var HTMLRuxIconLocalGroceryStoreElement: { prototype: HTMLRuxIconLocalGroceryStoreElement; new (): HTMLRuxIconLocalGroceryStoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalHospitalElement extends Components.RuxIconLocalHospital, HTMLStencilElement { } var HTMLRuxIconLocalHospitalElement: { prototype: HTMLRuxIconLocalHospitalElement; new (): HTMLRuxIconLocalHospitalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalHotelElement extends Components.RuxIconLocalHotel, HTMLStencilElement { } var HTMLRuxIconLocalHotelElement: { prototype: HTMLRuxIconLocalHotelElement; new (): HTMLRuxIconLocalHotelElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalLaundryServiceElement extends Components.RuxIconLocalLaundryService, HTMLStencilElement { } var HTMLRuxIconLocalLaundryServiceElement: { prototype: HTMLRuxIconLocalLaundryServiceElement; new (): HTMLRuxIconLocalLaundryServiceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalLibraryElement extends Components.RuxIconLocalLibrary, HTMLStencilElement { } var HTMLRuxIconLocalLibraryElement: { prototype: HTMLRuxIconLocalLibraryElement; new (): HTMLRuxIconLocalLibraryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalMallElement extends Components.RuxIconLocalMall, HTMLStencilElement { } var HTMLRuxIconLocalMallElement: { prototype: HTMLRuxIconLocalMallElement; new (): HTMLRuxIconLocalMallElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalMoviesElement extends Components.RuxIconLocalMovies, HTMLStencilElement { } var HTMLRuxIconLocalMoviesElement: { prototype: HTMLRuxIconLocalMoviesElement; new (): HTMLRuxIconLocalMoviesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalOfferElement extends Components.RuxIconLocalOffer, HTMLStencilElement { } var HTMLRuxIconLocalOfferElement: { prototype: HTMLRuxIconLocalOfferElement; new (): HTMLRuxIconLocalOfferElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalParkingElement extends Components.RuxIconLocalParking, HTMLStencilElement { } var HTMLRuxIconLocalParkingElement: { prototype: HTMLRuxIconLocalParkingElement; new (): HTMLRuxIconLocalParkingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalPharmacyElement extends Components.RuxIconLocalPharmacy, HTMLStencilElement { } var HTMLRuxIconLocalPharmacyElement: { prototype: HTMLRuxIconLocalPharmacyElement; new (): HTMLRuxIconLocalPharmacyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalPhoneElement extends Components.RuxIconLocalPhone, HTMLStencilElement { } var HTMLRuxIconLocalPhoneElement: { prototype: HTMLRuxIconLocalPhoneElement; new (): HTMLRuxIconLocalPhoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalPlayElement extends Components.RuxIconLocalPlay, HTMLStencilElement { } var HTMLRuxIconLocalPlayElement: { prototype: HTMLRuxIconLocalPlayElement; new (): HTMLRuxIconLocalPlayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalPostOfficeElement extends Components.RuxIconLocalPostOffice, HTMLStencilElement { } var HTMLRuxIconLocalPostOfficeElement: { prototype: HTMLRuxIconLocalPostOfficeElement; new (): HTMLRuxIconLocalPostOfficeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalPrintshopElement extends Components.RuxIconLocalPrintshop, HTMLStencilElement { } var HTMLRuxIconLocalPrintshopElement: { prototype: HTMLRuxIconLocalPrintshopElement; new (): HTMLRuxIconLocalPrintshopElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalSeeElement extends Components.RuxIconLocalSee, HTMLStencilElement { } var HTMLRuxIconLocalSeeElement: { prototype: HTMLRuxIconLocalSeeElement; new (): HTMLRuxIconLocalSeeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalShippingElement extends Components.RuxIconLocalShipping, HTMLStencilElement { } var HTMLRuxIconLocalShippingElement: { prototype: HTMLRuxIconLocalShippingElement; new (): HTMLRuxIconLocalShippingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocalTaxiElement extends Components.RuxIconLocalTaxi, HTMLStencilElement { } var HTMLRuxIconLocalTaxiElement: { prototype: HTMLRuxIconLocalTaxiElement; new (): HTMLRuxIconLocalTaxiElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocationCityElement extends Components.RuxIconLocationCity, HTMLStencilElement { } var HTMLRuxIconLocationCityElement: { prototype: HTMLRuxIconLocationCityElement; new (): HTMLRuxIconLocationCityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocationDisabledElement extends Components.RuxIconLocationDisabled, HTMLStencilElement { } var HTMLRuxIconLocationDisabledElement: { prototype: HTMLRuxIconLocationDisabledElement; new (): HTMLRuxIconLocationDisabledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocationOffElement extends Components.RuxIconLocationOff, HTMLStencilElement { } var HTMLRuxIconLocationOffElement: { prototype: HTMLRuxIconLocationOffElement; new (): HTMLRuxIconLocationOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocationOnElement extends Components.RuxIconLocationOn, HTMLStencilElement { } var HTMLRuxIconLocationOnElement: { prototype: HTMLRuxIconLocationOnElement; new (): HTMLRuxIconLocationOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLocationSearchingElement extends Components.RuxIconLocationSearching, HTMLStencilElement { } var HTMLRuxIconLocationSearchingElement: { prototype: HTMLRuxIconLocationSearchingElement; new (): HTMLRuxIconLocationSearchingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLockElement extends Components.RuxIconLock, HTMLStencilElement { } var HTMLRuxIconLockElement: { prototype: HTMLRuxIconLockElement; new (): HTMLRuxIconLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLockOpenElement extends Components.RuxIconLockOpen, HTMLStencilElement { } var HTMLRuxIconLockOpenElement: { prototype: HTMLRuxIconLockOpenElement; new (): HTMLRuxIconLockOpenElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLooksElement extends Components.RuxIconLooks, HTMLStencilElement { } var HTMLRuxIconLooksElement: { prototype: HTMLRuxIconLooksElement; new (): HTMLRuxIconLooksElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLooks1Element extends Components.RuxIconLooks1, HTMLStencilElement { } var HTMLRuxIconLooks1Element: { prototype: HTMLRuxIconLooks1Element; new (): HTMLRuxIconLooks1Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLooks2Element extends Components.RuxIconLooks2, HTMLStencilElement { } var HTMLRuxIconLooks2Element: { prototype: HTMLRuxIconLooks2Element; new (): HTMLRuxIconLooks2Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLooks3Element extends Components.RuxIconLooks3, HTMLStencilElement { } var HTMLRuxIconLooks3Element: { prototype: HTMLRuxIconLooks3Element; new (): HTMLRuxIconLooks3Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLooks4Element extends Components.RuxIconLooks4, HTMLStencilElement { } var HTMLRuxIconLooks4Element: { prototype: HTMLRuxIconLooks4Element; new (): HTMLRuxIconLooks4Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLooks5Element extends Components.RuxIconLooks5, HTMLStencilElement { } var HTMLRuxIconLooks5Element: { prototype: HTMLRuxIconLooks5Element; new (): HTMLRuxIconLooks5Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLooks6Element extends Components.RuxIconLooks6, HTMLStencilElement { } var HTMLRuxIconLooks6Element: { prototype: HTMLRuxIconLooks6Element; new (): HTMLRuxIconLooks6Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLoopElement extends Components.RuxIconLoop, HTMLStencilElement { } var HTMLRuxIconLoopElement: { prototype: HTMLRuxIconLoopElement; new (): HTMLRuxIconLoopElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLoupeElement extends Components.RuxIconLoupe, HTMLStencilElement { } var HTMLRuxIconLoupeElement: { prototype: HTMLRuxIconLoupeElement; new (): HTMLRuxIconLoupeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLowPriorityElement extends Components.RuxIconLowPriority, HTMLStencilElement { } var HTMLRuxIconLowPriorityElement: { prototype: HTMLRuxIconLowPriorityElement; new (): HTMLRuxIconLowPriorityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconLoyaltyElement extends Components.RuxIconLoyalty, HTMLStencilElement { } var HTMLRuxIconLoyaltyElement: { prototype: HTMLRuxIconLoyaltyElement; new (): HTMLRuxIconLoyaltyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMailElement extends Components.RuxIconMail, HTMLStencilElement { } var HTMLRuxIconMailElement: { prototype: HTMLRuxIconMailElement; new (): HTMLRuxIconMailElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMailOutlineElement extends Components.RuxIconMailOutline, HTMLStencilElement { } var HTMLRuxIconMailOutlineElement: { prototype: HTMLRuxIconMailOutlineElement; new (): HTMLRuxIconMailOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMapElement extends Components.RuxIconMap, HTMLStencilElement { } var HTMLRuxIconMapElement: { prototype: HTMLRuxIconMapElement; new (): HTMLRuxIconMapElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMarkunreadElement extends Components.RuxIconMarkunread, HTMLStencilElement { } var HTMLRuxIconMarkunreadElement: { prototype: HTMLRuxIconMarkunreadElement; new (): HTMLRuxIconMarkunreadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMarkunreadMailboxElement extends Components.RuxIconMarkunreadMailbox, HTMLStencilElement { } var HTMLRuxIconMarkunreadMailboxElement: { prototype: HTMLRuxIconMarkunreadMailboxElement; new (): HTMLRuxIconMarkunreadMailboxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMaximizeElement extends Components.RuxIconMaximize, HTMLStencilElement { } var HTMLRuxIconMaximizeElement: { prototype: HTMLRuxIconMaximizeElement; new (): HTMLRuxIconMaximizeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMeetingRoomElement extends Components.RuxIconMeetingRoom, HTMLStencilElement { } var HTMLRuxIconMeetingRoomElement: { prototype: HTMLRuxIconMeetingRoomElement; new (): HTMLRuxIconMeetingRoomElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMemoryElement extends Components.RuxIconMemory, HTMLStencilElement { } var HTMLRuxIconMemoryElement: { prototype: HTMLRuxIconMemoryElement; new (): HTMLRuxIconMemoryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMenuElement extends Components.RuxIconMenu, HTMLStencilElement { } var HTMLRuxIconMenuElement: { prototype: HTMLRuxIconMenuElement; new (): HTMLRuxIconMenuElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMergeTypeElement extends Components.RuxIconMergeType, HTMLStencilElement { } var HTMLRuxIconMergeTypeElement: { prototype: HTMLRuxIconMergeTypeElement; new (): HTMLRuxIconMergeTypeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMessageElement extends Components.RuxIconMessage, HTMLStencilElement { } var HTMLRuxIconMessageElement: { prototype: HTMLRuxIconMessageElement; new (): HTMLRuxIconMessageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMicElement extends Components.RuxIconMic, HTMLStencilElement { } var HTMLRuxIconMicElement: { prototype: HTMLRuxIconMicElement; new (): HTMLRuxIconMicElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMicNoneElement extends Components.RuxIconMicNone, HTMLStencilElement { } var HTMLRuxIconMicNoneElement: { prototype: HTMLRuxIconMicNoneElement; new (): HTMLRuxIconMicNoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMicOffElement extends Components.RuxIconMicOff, HTMLStencilElement { } var HTMLRuxIconMicOffElement: { prototype: HTMLRuxIconMicOffElement; new (): HTMLRuxIconMicOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMinimizeElement extends Components.RuxIconMinimize, HTMLStencilElement { } var HTMLRuxIconMinimizeElement: { prototype: HTMLRuxIconMinimizeElement; new (): HTMLRuxIconMinimizeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMissedVideoCallElement extends Components.RuxIconMissedVideoCall, HTMLStencilElement { } var HTMLRuxIconMissedVideoCallElement: { prototype: HTMLRuxIconMissedVideoCallElement; new (): HTMLRuxIconMissedVideoCallElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMissionElement extends Components.RuxIconMission, HTMLStencilElement { } var HTMLRuxIconMissionElement: { prototype: HTMLRuxIconMissionElement; new (): HTMLRuxIconMissionElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMmsElement extends Components.RuxIconMms, HTMLStencilElement { } var HTMLRuxIconMmsElement: { prototype: HTMLRuxIconMmsElement; new (): HTMLRuxIconMmsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMobileFriendlyElement extends Components.RuxIconMobileFriendly, HTMLStencilElement { } var HTMLRuxIconMobileFriendlyElement: { prototype: HTMLRuxIconMobileFriendlyElement; new (): HTMLRuxIconMobileFriendlyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMobileOffElement extends Components.RuxIconMobileOff, HTMLStencilElement { } var HTMLRuxIconMobileOffElement: { prototype: HTMLRuxIconMobileOffElement; new (): HTMLRuxIconMobileOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMobileScreenShareElement extends Components.RuxIconMobileScreenShare, HTMLStencilElement { } var HTMLRuxIconMobileScreenShareElement: { prototype: HTMLRuxIconMobileScreenShareElement; new (): HTMLRuxIconMobileScreenShareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconModeCommentElement extends Components.RuxIconModeComment, HTMLStencilElement { } var HTMLRuxIconModeCommentElement: { prototype: HTMLRuxIconModeCommentElement; new (): HTMLRuxIconModeCommentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMonetizationOnElement extends Components.RuxIconMonetizationOn, HTMLStencilElement { } var HTMLRuxIconMonetizationOnElement: { prototype: HTMLRuxIconMonetizationOnElement; new (): HTMLRuxIconMonetizationOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoneyElement extends Components.RuxIconMoney, HTMLStencilElement { } var HTMLRuxIconMoneyElement: { prototype: HTMLRuxIconMoneyElement; new (): HTMLRuxIconMoneyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoneyOffElement extends Components.RuxIconMoneyOff, HTMLStencilElement { } var HTMLRuxIconMoneyOffElement: { prototype: HTMLRuxIconMoneyOffElement; new (): HTMLRuxIconMoneyOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMonochromePhotosElement extends Components.RuxIconMonochromePhotos, HTMLStencilElement { } var HTMLRuxIconMonochromePhotosElement: { prototype: HTMLRuxIconMonochromePhotosElement; new (): HTMLRuxIconMonochromePhotosElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoodElement extends Components.RuxIconMood, HTMLStencilElement { } var HTMLRuxIconMoodElement: { prototype: HTMLRuxIconMoodElement; new (): HTMLRuxIconMoodElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoodBadElement extends Components.RuxIconMoodBad, HTMLStencilElement { } var HTMLRuxIconMoodBadElement: { prototype: HTMLRuxIconMoodBadElement; new (): HTMLRuxIconMoodBadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoreElement extends Components.RuxIconMore, HTMLStencilElement { } var HTMLRuxIconMoreElement: { prototype: HTMLRuxIconMoreElement; new (): HTMLRuxIconMoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoreHorizElement extends Components.RuxIconMoreHoriz, HTMLStencilElement { } var HTMLRuxIconMoreHorizElement: { prototype: HTMLRuxIconMoreHorizElement; new (): HTMLRuxIconMoreHorizElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoreVertElement extends Components.RuxIconMoreVert, HTMLStencilElement { } var HTMLRuxIconMoreVertElement: { prototype: HTMLRuxIconMoreVertElement; new (): HTMLRuxIconMoreVertElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMotorcycleElement extends Components.RuxIconMotorcycle, HTMLStencilElement { } var HTMLRuxIconMotorcycleElement: { prototype: HTMLRuxIconMotorcycleElement; new (): HTMLRuxIconMotorcycleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMouseElement extends Components.RuxIconMouse, HTMLStencilElement { } var HTMLRuxIconMouseElement: { prototype: HTMLRuxIconMouseElement; new (): HTMLRuxIconMouseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMoveToInboxElement extends Components.RuxIconMoveToInbox, HTMLStencilElement { } var HTMLRuxIconMoveToInboxElement: { prototype: HTMLRuxIconMoveToInboxElement; new (): HTMLRuxIconMoveToInboxElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMovieElement extends Components.RuxIconMovie, HTMLStencilElement { } var HTMLRuxIconMovieElement: { prototype: HTMLRuxIconMovieElement; new (): HTMLRuxIconMovieElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMovieCreationElement extends Components.RuxIconMovieCreation, HTMLStencilElement { } var HTMLRuxIconMovieCreationElement: { prototype: HTMLRuxIconMovieCreationElement; new (): HTMLRuxIconMovieCreationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMovieFilterElement extends Components.RuxIconMovieFilter, HTMLStencilElement { } var HTMLRuxIconMovieFilterElement: { prototype: HTMLRuxIconMovieFilterElement; new (): HTMLRuxIconMovieFilterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMultilineChartElement extends Components.RuxIconMultilineChart, HTMLStencilElement { } var HTMLRuxIconMultilineChartElement: { prototype: HTMLRuxIconMultilineChartElement; new (): HTMLRuxIconMultilineChartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMusicNoteElement extends Components.RuxIconMusicNote, HTMLStencilElement { } var HTMLRuxIconMusicNoteElement: { prototype: HTMLRuxIconMusicNoteElement; new (): HTMLRuxIconMusicNoteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMusicOffElement extends Components.RuxIconMusicOff, HTMLStencilElement { } var HTMLRuxIconMusicOffElement: { prototype: HTMLRuxIconMusicOffElement; new (): HTMLRuxIconMusicOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMusicVideoElement extends Components.RuxIconMusicVideo, HTMLStencilElement { } var HTMLRuxIconMusicVideoElement: { prototype: HTMLRuxIconMusicVideoElement; new (): HTMLRuxIconMusicVideoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconMyLocationElement extends Components.RuxIconMyLocation, HTMLStencilElement { } var HTMLRuxIconMyLocationElement: { prototype: HTMLRuxIconMyLocationElement; new (): HTMLRuxIconMyLocationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNatureElement extends Components.RuxIconNature, HTMLStencilElement { } var HTMLRuxIconNatureElement: { prototype: HTMLRuxIconNatureElement; new (): HTMLRuxIconNatureElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNaturePeopleElement extends Components.RuxIconNaturePeople, HTMLStencilElement { } var HTMLRuxIconNaturePeopleElement: { prototype: HTMLRuxIconNaturePeopleElement; new (): HTMLRuxIconNaturePeopleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNavigateBeforeElement extends Components.RuxIconNavigateBefore, HTMLStencilElement { } var HTMLRuxIconNavigateBeforeElement: { prototype: HTMLRuxIconNavigateBeforeElement; new (): HTMLRuxIconNavigateBeforeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNavigateNextElement extends Components.RuxIconNavigateNext, HTMLStencilElement { } var HTMLRuxIconNavigateNextElement: { prototype: HTMLRuxIconNavigateNextElement; new (): HTMLRuxIconNavigateNextElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNavigationElement extends Components.RuxIconNavigation, HTMLStencilElement { } var HTMLRuxIconNavigationElement: { prototype: HTMLRuxIconNavigationElement; new (): HTMLRuxIconNavigationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNearMeElement extends Components.RuxIconNearMe, HTMLStencilElement { } var HTMLRuxIconNearMeElement: { prototype: HTMLRuxIconNearMeElement; new (): HTMLRuxIconNearMeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNetcomElement extends Components.RuxIconNetcom, HTMLStencilElement { } var HTMLRuxIconNetcomElement: { prototype: HTMLRuxIconNetcomElement; new (): HTMLRuxIconNetcomElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNetworkCellElement extends Components.RuxIconNetworkCell, HTMLStencilElement { } var HTMLRuxIconNetworkCellElement: { prototype: HTMLRuxIconNetworkCellElement; new (): HTMLRuxIconNetworkCellElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNetworkCheckElement extends Components.RuxIconNetworkCheck, HTMLStencilElement { } var HTMLRuxIconNetworkCheckElement: { prototype: HTMLRuxIconNetworkCheckElement; new (): HTMLRuxIconNetworkCheckElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNetworkLockedElement extends Components.RuxIconNetworkLocked, HTMLStencilElement { } var HTMLRuxIconNetworkLockedElement: { prototype: HTMLRuxIconNetworkLockedElement; new (): HTMLRuxIconNetworkLockedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNetworkWifiElement extends Components.RuxIconNetworkWifi, HTMLStencilElement { } var HTMLRuxIconNetworkWifiElement: { prototype: HTMLRuxIconNetworkWifiElement; new (): HTMLRuxIconNetworkWifiElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNewReleasesElement extends Components.RuxIconNewReleases, HTMLStencilElement { } var HTMLRuxIconNewReleasesElement: { prototype: HTMLRuxIconNewReleasesElement; new (): HTMLRuxIconNewReleasesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNextWeekElement extends Components.RuxIconNextWeek, HTMLStencilElement { } var HTMLRuxIconNextWeekElement: { prototype: HTMLRuxIconNextWeekElement; new (): HTMLRuxIconNextWeekElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNfcElement extends Components.RuxIconNfc, HTMLStencilElement { } var HTMLRuxIconNfcElement: { prototype: HTMLRuxIconNfcElement; new (): HTMLRuxIconNfcElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNoEncryptionElement extends Components.RuxIconNoEncryption, HTMLStencilElement { } var HTMLRuxIconNoEncryptionElement: { prototype: HTMLRuxIconNoEncryptionElement; new (): HTMLRuxIconNoEncryptionElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNoMeetingRoomElement extends Components.RuxIconNoMeetingRoom, HTMLStencilElement { } var HTMLRuxIconNoMeetingRoomElement: { prototype: HTMLRuxIconNoMeetingRoomElement; new (): HTMLRuxIconNoMeetingRoomElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNoSimElement extends Components.RuxIconNoSim, HTMLStencilElement { } var HTMLRuxIconNoSimElement: { prototype: HTMLRuxIconNoSimElement; new (): HTMLRuxIconNoSimElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotInterestedElement extends Components.RuxIconNotInterested, HTMLStencilElement { } var HTMLRuxIconNotInterestedElement: { prototype: HTMLRuxIconNotInterestedElement; new (): HTMLRuxIconNotInterestedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotListedLocationElement extends Components.RuxIconNotListedLocation, HTMLStencilElement { } var HTMLRuxIconNotListedLocationElement: { prototype: HTMLRuxIconNotListedLocationElement; new (): HTMLRuxIconNotListedLocationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNoteElement extends Components.RuxIconNote, HTMLStencilElement { } var HTMLRuxIconNoteElement: { prototype: HTMLRuxIconNoteElement; new (): HTMLRuxIconNoteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNoteAddElement extends Components.RuxIconNoteAdd, HTMLStencilElement { } var HTMLRuxIconNoteAddElement: { prototype: HTMLRuxIconNoteAddElement; new (): HTMLRuxIconNoteAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotesElement extends Components.RuxIconNotes, HTMLStencilElement { } var HTMLRuxIconNotesElement: { prototype: HTMLRuxIconNotesElement; new (): HTMLRuxIconNotesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotificationImportantElement extends Components.RuxIconNotificationImportant, HTMLStencilElement { } var HTMLRuxIconNotificationImportantElement: { prototype: HTMLRuxIconNotificationImportantElement; new (): HTMLRuxIconNotificationImportantElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotificationsElement extends Components.RuxIconNotifications, HTMLStencilElement { } var HTMLRuxIconNotificationsElement: { prototype: HTMLRuxIconNotificationsElement; new (): HTMLRuxIconNotificationsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotificationsActiveElement extends Components.RuxIconNotificationsActive, HTMLStencilElement { } var HTMLRuxIconNotificationsActiveElement: { prototype: HTMLRuxIconNotificationsActiveElement; new (): HTMLRuxIconNotificationsActiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotificationsNoneElement extends Components.RuxIconNotificationsNone, HTMLStencilElement { } var HTMLRuxIconNotificationsNoneElement: { prototype: HTMLRuxIconNotificationsNoneElement; new (): HTMLRuxIconNotificationsNoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotificationsOffElement extends Components.RuxIconNotificationsOff, HTMLStencilElement { } var HTMLRuxIconNotificationsOffElement: { prototype: HTMLRuxIconNotificationsOffElement; new (): HTMLRuxIconNotificationsOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconNotificationsPausedElement extends Components.RuxIconNotificationsPaused, HTMLStencilElement { } var HTMLRuxIconNotificationsPausedElement: { prototype: HTMLRuxIconNotificationsPausedElement; new (): HTMLRuxIconNotificationsPausedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOfflineBoltElement extends Components.RuxIconOfflineBolt, HTMLStencilElement { } var HTMLRuxIconOfflineBoltElement: { prototype: HTMLRuxIconOfflineBoltElement; new (): HTMLRuxIconOfflineBoltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOfflinePinElement extends Components.RuxIconOfflinePin, HTMLStencilElement { } var HTMLRuxIconOfflinePinElement: { prototype: HTMLRuxIconOfflinePinElement; new (): HTMLRuxIconOfflinePinElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOndemandVideoElement extends Components.RuxIconOndemandVideo, HTMLStencilElement { } var HTMLRuxIconOndemandVideoElement: { prototype: HTMLRuxIconOndemandVideoElement; new (): HTMLRuxIconOndemandVideoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOpacityElement extends Components.RuxIconOpacity, HTMLStencilElement { } var HTMLRuxIconOpacityElement: { prototype: HTMLRuxIconOpacityElement; new (): HTMLRuxIconOpacityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOpenInBrowserElement extends Components.RuxIconOpenInBrowser, HTMLStencilElement { } var HTMLRuxIconOpenInBrowserElement: { prototype: HTMLRuxIconOpenInBrowserElement; new (): HTMLRuxIconOpenInBrowserElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOpenInNewElement extends Components.RuxIconOpenInNew, HTMLStencilElement { } var HTMLRuxIconOpenInNewElement: { prototype: HTMLRuxIconOpenInNewElement; new (): HTMLRuxIconOpenInNewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOpenWithElement extends Components.RuxIconOpenWith, HTMLStencilElement { } var HTMLRuxIconOpenWithElement: { prototype: HTMLRuxIconOpenWithElement; new (): HTMLRuxIconOpenWithElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconOutlinedFlagElement extends Components.RuxIconOutlinedFlag, HTMLStencilElement { } var HTMLRuxIconOutlinedFlagElement: { prototype: HTMLRuxIconOutlinedFlagElement; new (): HTMLRuxIconOutlinedFlagElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPagesElement extends Components.RuxIconPages, HTMLStencilElement { } var HTMLRuxIconPagesElement: { prototype: HTMLRuxIconPagesElement; new (): HTMLRuxIconPagesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPageviewElement extends Components.RuxIconPageview, HTMLStencilElement { } var HTMLRuxIconPageviewElement: { prototype: HTMLRuxIconPageviewElement; new (): HTMLRuxIconPageviewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPaletteElement extends Components.RuxIconPalette, HTMLStencilElement { } var HTMLRuxIconPaletteElement: { prototype: HTMLRuxIconPaletteElement; new (): HTMLRuxIconPaletteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPanToolElement extends Components.RuxIconPanTool, HTMLStencilElement { } var HTMLRuxIconPanToolElement: { prototype: HTMLRuxIconPanToolElement; new (): HTMLRuxIconPanToolElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPanoramaElement extends Components.RuxIconPanorama, HTMLStencilElement { } var HTMLRuxIconPanoramaElement: { prototype: HTMLRuxIconPanoramaElement; new (): HTMLRuxIconPanoramaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPanoramaFishEyeElement extends Components.RuxIconPanoramaFishEye, HTMLStencilElement { } var HTMLRuxIconPanoramaFishEyeElement: { prototype: HTMLRuxIconPanoramaFishEyeElement; new (): HTMLRuxIconPanoramaFishEyeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPanoramaHorizontalElement extends Components.RuxIconPanoramaHorizontal, HTMLStencilElement { } var HTMLRuxIconPanoramaHorizontalElement: { prototype: HTMLRuxIconPanoramaHorizontalElement; new (): HTMLRuxIconPanoramaHorizontalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPanoramaVerticalElement extends Components.RuxIconPanoramaVertical, HTMLStencilElement { } var HTMLRuxIconPanoramaVerticalElement: { prototype: HTMLRuxIconPanoramaVerticalElement; new (): HTMLRuxIconPanoramaVerticalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPanoramaWideAngleElement extends Components.RuxIconPanoramaWideAngle, HTMLStencilElement { } var HTMLRuxIconPanoramaWideAngleElement: { prototype: HTMLRuxIconPanoramaWideAngleElement; new (): HTMLRuxIconPanoramaWideAngleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPartyModeElement extends Components.RuxIconPartyMode, HTMLStencilElement { } var HTMLRuxIconPartyModeElement: { prototype: HTMLRuxIconPartyModeElement; new (): HTMLRuxIconPartyModeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPauseElement extends Components.RuxIconPause, HTMLStencilElement { } var HTMLRuxIconPauseElement: { prototype: HTMLRuxIconPauseElement; new (): HTMLRuxIconPauseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPauseCircleFilledElement extends Components.RuxIconPauseCircleFilled, HTMLStencilElement { } var HTMLRuxIconPauseCircleFilledElement: { prototype: HTMLRuxIconPauseCircleFilledElement; new (): HTMLRuxIconPauseCircleFilledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPauseCircleOutlineElement extends Components.RuxIconPauseCircleOutline, HTMLStencilElement { } var HTMLRuxIconPauseCircleOutlineElement: { prototype: HTMLRuxIconPauseCircleOutlineElement; new (): HTMLRuxIconPauseCircleOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPausePresentationElement extends Components.RuxIconPausePresentation, HTMLStencilElement { } var HTMLRuxIconPausePresentationElement: { prototype: HTMLRuxIconPausePresentationElement; new (): HTMLRuxIconPausePresentationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPayloadElement extends Components.RuxIconPayload, HTMLStencilElement { } var HTMLRuxIconPayloadElement: { prototype: HTMLRuxIconPayloadElement; new (): HTMLRuxIconPayloadElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPaymentElement extends Components.RuxIconPayment, HTMLStencilElement { } var HTMLRuxIconPaymentElement: { prototype: HTMLRuxIconPaymentElement; new (): HTMLRuxIconPaymentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPeopleOutlineElement extends Components.RuxIconPeopleOutline, HTMLStencilElement { } var HTMLRuxIconPeopleOutlineElement: { prototype: HTMLRuxIconPeopleOutlineElement; new (): HTMLRuxIconPeopleOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermCameraMicElement extends Components.RuxIconPermCameraMic, HTMLStencilElement { } var HTMLRuxIconPermCameraMicElement: { prototype: HTMLRuxIconPermCameraMicElement; new (): HTMLRuxIconPermCameraMicElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermContactCalendarElement extends Components.RuxIconPermContactCalendar, HTMLStencilElement { } var HTMLRuxIconPermContactCalendarElement: { prototype: HTMLRuxIconPermContactCalendarElement; new (): HTMLRuxIconPermContactCalendarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermDataSettingElement extends Components.RuxIconPermDataSetting, HTMLStencilElement { } var HTMLRuxIconPermDataSettingElement: { prototype: HTMLRuxIconPermDataSettingElement; new (): HTMLRuxIconPermDataSettingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermDeviceInformationElement extends Components.RuxIconPermDeviceInformation, HTMLStencilElement { } var HTMLRuxIconPermDeviceInformationElement: { prototype: HTMLRuxIconPermDeviceInformationElement; new (): HTMLRuxIconPermDeviceInformationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermIdentityElement extends Components.RuxIconPermIdentity, HTMLStencilElement { } var HTMLRuxIconPermIdentityElement: { prototype: HTMLRuxIconPermIdentityElement; new (): HTMLRuxIconPermIdentityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermMediaElement extends Components.RuxIconPermMedia, HTMLStencilElement { } var HTMLRuxIconPermMediaElement: { prototype: HTMLRuxIconPermMediaElement; new (): HTMLRuxIconPermMediaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermPhoneMsgElement extends Components.RuxIconPermPhoneMsg, HTMLStencilElement { } var HTMLRuxIconPermPhoneMsgElement: { prototype: HTMLRuxIconPermPhoneMsgElement; new (): HTMLRuxIconPermPhoneMsgElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPermScanWifiElement extends Components.RuxIconPermScanWifi, HTMLStencilElement { } var HTMLRuxIconPermScanWifiElement: { prototype: HTMLRuxIconPermScanWifiElement; new (): HTMLRuxIconPermScanWifiElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPersonElement extends Components.RuxIconPerson, HTMLStencilElement { } var HTMLRuxIconPersonElement: { prototype: HTMLRuxIconPersonElement; new (): HTMLRuxIconPersonElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPersonAddElement extends Components.RuxIconPersonAdd, HTMLStencilElement { } var HTMLRuxIconPersonAddElement: { prototype: HTMLRuxIconPersonAddElement; new (): HTMLRuxIconPersonAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPersonAddDisabledElement extends Components.RuxIconPersonAddDisabled, HTMLStencilElement { } var HTMLRuxIconPersonAddDisabledElement: { prototype: HTMLRuxIconPersonAddDisabledElement; new (): HTMLRuxIconPersonAddDisabledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPersonOutlineElement extends Components.RuxIconPersonOutline, HTMLStencilElement { } var HTMLRuxIconPersonOutlineElement: { prototype: HTMLRuxIconPersonOutlineElement; new (): HTMLRuxIconPersonOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPersonPinElement extends Components.RuxIconPersonPin, HTMLStencilElement { } var HTMLRuxIconPersonPinElement: { prototype: HTMLRuxIconPersonPinElement; new (): HTMLRuxIconPersonPinElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPersonPinCircleElement extends Components.RuxIconPersonPinCircle, HTMLStencilElement { } var HTMLRuxIconPersonPinCircleElement: { prototype: HTMLRuxIconPersonPinCircleElement; new (): HTMLRuxIconPersonPinCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPersonalVideoElement extends Components.RuxIconPersonalVideo, HTMLStencilElement { } var HTMLRuxIconPersonalVideoElement: { prototype: HTMLRuxIconPersonalVideoElement; new (): HTMLRuxIconPersonalVideoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPetsElement extends Components.RuxIconPets, HTMLStencilElement { } var HTMLRuxIconPetsElement: { prototype: HTMLRuxIconPetsElement; new (): HTMLRuxIconPetsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneElement extends Components.RuxIconPhone, HTMLStencilElement { } var HTMLRuxIconPhoneElement: { prototype: HTMLRuxIconPhoneElement; new (): HTMLRuxIconPhoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneAndroidElement extends Components.RuxIconPhoneAndroid, HTMLStencilElement { } var HTMLRuxIconPhoneAndroidElement: { prototype: HTMLRuxIconPhoneAndroidElement; new (): HTMLRuxIconPhoneAndroidElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneBluetoothSpeakerElement extends Components.RuxIconPhoneBluetoothSpeaker, HTMLStencilElement { } var HTMLRuxIconPhoneBluetoothSpeakerElement: { prototype: HTMLRuxIconPhoneBluetoothSpeakerElement; new (): HTMLRuxIconPhoneBluetoothSpeakerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneCallbackElement extends Components.RuxIconPhoneCallback, HTMLStencilElement { } var HTMLRuxIconPhoneCallbackElement: { prototype: HTMLRuxIconPhoneCallbackElement; new (): HTMLRuxIconPhoneCallbackElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneForwardedElement extends Components.RuxIconPhoneForwarded, HTMLStencilElement { } var HTMLRuxIconPhoneForwardedElement: { prototype: HTMLRuxIconPhoneForwardedElement; new (): HTMLRuxIconPhoneForwardedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneInTalkElement extends Components.RuxIconPhoneInTalk, HTMLStencilElement { } var HTMLRuxIconPhoneInTalkElement: { prototype: HTMLRuxIconPhoneInTalkElement; new (): HTMLRuxIconPhoneInTalkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneIphoneElement extends Components.RuxIconPhoneIphone, HTMLStencilElement { } var HTMLRuxIconPhoneIphoneElement: { prototype: HTMLRuxIconPhoneIphoneElement; new (): HTMLRuxIconPhoneIphoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneLockedElement extends Components.RuxIconPhoneLocked, HTMLStencilElement { } var HTMLRuxIconPhoneLockedElement: { prototype: HTMLRuxIconPhoneLockedElement; new (): HTMLRuxIconPhoneLockedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhoneMissedElement extends Components.RuxIconPhoneMissed, HTMLStencilElement { } var HTMLRuxIconPhoneMissedElement: { prototype: HTMLRuxIconPhoneMissedElement; new (): HTMLRuxIconPhoneMissedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhonePausedElement extends Components.RuxIconPhonePaused, HTMLStencilElement { } var HTMLRuxIconPhonePausedElement: { prototype: HTMLRuxIconPhonePausedElement; new (): HTMLRuxIconPhonePausedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhonelinkElement extends Components.RuxIconPhonelink, HTMLStencilElement { } var HTMLRuxIconPhonelinkElement: { prototype: HTMLRuxIconPhonelinkElement; new (): HTMLRuxIconPhonelinkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhonelinkEraseElement extends Components.RuxIconPhonelinkErase, HTMLStencilElement { } var HTMLRuxIconPhonelinkEraseElement: { prototype: HTMLRuxIconPhonelinkEraseElement; new (): HTMLRuxIconPhonelinkEraseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhonelinkLockElement extends Components.RuxIconPhonelinkLock, HTMLStencilElement { } var HTMLRuxIconPhonelinkLockElement: { prototype: HTMLRuxIconPhonelinkLockElement; new (): HTMLRuxIconPhonelinkLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhonelinkOffElement extends Components.RuxIconPhonelinkOff, HTMLStencilElement { } var HTMLRuxIconPhonelinkOffElement: { prototype: HTMLRuxIconPhonelinkOffElement; new (): HTMLRuxIconPhonelinkOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhonelinkRingElement extends Components.RuxIconPhonelinkRing, HTMLStencilElement { } var HTMLRuxIconPhonelinkRingElement: { prototype: HTMLRuxIconPhonelinkRingElement; new (): HTMLRuxIconPhonelinkRingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhonelinkSetupElement extends Components.RuxIconPhonelinkSetup, HTMLStencilElement { } var HTMLRuxIconPhonelinkSetupElement: { prototype: HTMLRuxIconPhonelinkSetupElement; new (): HTMLRuxIconPhonelinkSetupElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoElement extends Components.RuxIconPhoto, HTMLStencilElement { } var HTMLRuxIconPhotoElement: { prototype: HTMLRuxIconPhotoElement; new (): HTMLRuxIconPhotoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoAlbumElement extends Components.RuxIconPhotoAlbum, HTMLStencilElement { } var HTMLRuxIconPhotoAlbumElement: { prototype: HTMLRuxIconPhotoAlbumElement; new (): HTMLRuxIconPhotoAlbumElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoCameraElement extends Components.RuxIconPhotoCamera, HTMLStencilElement { } var HTMLRuxIconPhotoCameraElement: { prototype: HTMLRuxIconPhotoCameraElement; new (): HTMLRuxIconPhotoCameraElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoFilterElement extends Components.RuxIconPhotoFilter, HTMLStencilElement { } var HTMLRuxIconPhotoFilterElement: { prototype: HTMLRuxIconPhotoFilterElement; new (): HTMLRuxIconPhotoFilterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoLibraryElement extends Components.RuxIconPhotoLibrary, HTMLStencilElement { } var HTMLRuxIconPhotoLibraryElement: { prototype: HTMLRuxIconPhotoLibraryElement; new (): HTMLRuxIconPhotoLibraryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoSizeSelectActualElement extends Components.RuxIconPhotoSizeSelectActual, HTMLStencilElement { } var HTMLRuxIconPhotoSizeSelectActualElement: { prototype: HTMLRuxIconPhotoSizeSelectActualElement; new (): HTMLRuxIconPhotoSizeSelectActualElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoSizeSelectLargeElement extends Components.RuxIconPhotoSizeSelectLarge, HTMLStencilElement { } var HTMLRuxIconPhotoSizeSelectLargeElement: { prototype: HTMLRuxIconPhotoSizeSelectLargeElement; new (): HTMLRuxIconPhotoSizeSelectLargeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPhotoSizeSelectSmallElement extends Components.RuxIconPhotoSizeSelectSmall, HTMLStencilElement { } var HTMLRuxIconPhotoSizeSelectSmallElement: { prototype: HTMLRuxIconPhotoSizeSelectSmallElement; new (): HTMLRuxIconPhotoSizeSelectSmallElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPictureAsPdfElement extends Components.RuxIconPictureAsPdf, HTMLStencilElement { } var HTMLRuxIconPictureAsPdfElement: { prototype: HTMLRuxIconPictureAsPdfElement; new (): HTMLRuxIconPictureAsPdfElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPictureInPictureElement extends Components.RuxIconPictureInPicture, HTMLStencilElement { } var HTMLRuxIconPictureInPictureElement: { prototype: HTMLRuxIconPictureInPictureElement; new (): HTMLRuxIconPictureInPictureElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPictureInPictureAltElement extends Components.RuxIconPictureInPictureAlt, HTMLStencilElement { } var HTMLRuxIconPictureInPictureAltElement: { prototype: HTMLRuxIconPictureInPictureAltElement; new (): HTMLRuxIconPictureInPictureAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPieChartElement extends Components.RuxIconPieChart, HTMLStencilElement { } var HTMLRuxIconPieChartElement: { prototype: HTMLRuxIconPieChartElement; new (): HTMLRuxIconPieChartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPinDropElement extends Components.RuxIconPinDrop, HTMLStencilElement { } var HTMLRuxIconPinDropElement: { prototype: HTMLRuxIconPinDropElement; new (): HTMLRuxIconPinDropElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlaceElement extends Components.RuxIconPlace, HTMLStencilElement { } var HTMLRuxIconPlaceElement: { prototype: HTMLRuxIconPlaceElement; new (): HTMLRuxIconPlaceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlayArrowElement extends Components.RuxIconPlayArrow, HTMLStencilElement { } var HTMLRuxIconPlayArrowElement: { prototype: HTMLRuxIconPlayArrowElement; new (): HTMLRuxIconPlayArrowElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlayCircleFilledElement extends Components.RuxIconPlayCircleFilled, HTMLStencilElement { } var HTMLRuxIconPlayCircleFilledElement: { prototype: HTMLRuxIconPlayCircleFilledElement; new (): HTMLRuxIconPlayCircleFilledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlayCircleFilledWhiteElement extends Components.RuxIconPlayCircleFilledWhite, HTMLStencilElement { } var HTMLRuxIconPlayCircleFilledWhiteElement: { prototype: HTMLRuxIconPlayCircleFilledWhiteElement; new (): HTMLRuxIconPlayCircleFilledWhiteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlayCircleOutlineElement extends Components.RuxIconPlayCircleOutline, HTMLStencilElement { } var HTMLRuxIconPlayCircleOutlineElement: { prototype: HTMLRuxIconPlayCircleOutlineElement; new (): HTMLRuxIconPlayCircleOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlayForWorkElement extends Components.RuxIconPlayForWork, HTMLStencilElement { } var HTMLRuxIconPlayForWorkElement: { prototype: HTMLRuxIconPlayForWorkElement; new (): HTMLRuxIconPlayForWorkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlaylistAddElement extends Components.RuxIconPlaylistAdd, HTMLStencilElement { } var HTMLRuxIconPlaylistAddElement: { prototype: HTMLRuxIconPlaylistAddElement; new (): HTMLRuxIconPlaylistAddElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlaylistAddCheckElement extends Components.RuxIconPlaylistAddCheck, HTMLStencilElement { } var HTMLRuxIconPlaylistAddCheckElement: { prototype: HTMLRuxIconPlaylistAddCheckElement; new (): HTMLRuxIconPlaylistAddCheckElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlaylistPlayElement extends Components.RuxIconPlaylistPlay, HTMLStencilElement { } var HTMLRuxIconPlaylistPlayElement: { prototype: HTMLRuxIconPlaylistPlayElement; new (): HTMLRuxIconPlaylistPlayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPlusOneElement extends Components.RuxIconPlusOne, HTMLStencilElement { } var HTMLRuxIconPlusOneElement: { prototype: HTMLRuxIconPlusOneElement; new (): HTMLRuxIconPlusOneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPollElement extends Components.RuxIconPoll, HTMLStencilElement { } var HTMLRuxIconPollElement: { prototype: HTMLRuxIconPollElement; new (): HTMLRuxIconPollElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPoolElement extends Components.RuxIconPool, HTMLStencilElement { } var HTMLRuxIconPoolElement: { prototype: HTMLRuxIconPoolElement; new (): HTMLRuxIconPoolElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPortableWifiOffElement extends Components.RuxIconPortableWifiOff, HTMLStencilElement { } var HTMLRuxIconPortableWifiOffElement: { prototype: HTMLRuxIconPortableWifiOffElement; new (): HTMLRuxIconPortableWifiOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPortraitElement extends Components.RuxIconPortrait, HTMLStencilElement { } var HTMLRuxIconPortraitElement: { prototype: HTMLRuxIconPortraitElement; new (): HTMLRuxIconPortraitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPowerElement extends Components.RuxIconPower, HTMLStencilElement { } var HTMLRuxIconPowerElement: { prototype: HTMLRuxIconPowerElement; new (): HTMLRuxIconPowerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPowerInputElement extends Components.RuxIconPowerInput, HTMLStencilElement { } var HTMLRuxIconPowerInputElement: { prototype: HTMLRuxIconPowerInputElement; new (): HTMLRuxIconPowerInputElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPowerOffElement extends Components.RuxIconPowerOff, HTMLStencilElement { } var HTMLRuxIconPowerOffElement: { prototype: HTMLRuxIconPowerOffElement; new (): HTMLRuxIconPowerOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPowerSettingsNewElement extends Components.RuxIconPowerSettingsNew, HTMLStencilElement { } var HTMLRuxIconPowerSettingsNewElement: { prototype: HTMLRuxIconPowerSettingsNewElement; new (): HTMLRuxIconPowerSettingsNewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPregnantWomanElement extends Components.RuxIconPregnantWoman, HTMLStencilElement { } var HTMLRuxIconPregnantWomanElement: { prototype: HTMLRuxIconPregnantWomanElement; new (): HTMLRuxIconPregnantWomanElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPresentToAllElement extends Components.RuxIconPresentToAll, HTMLStencilElement { } var HTMLRuxIconPresentToAllElement: { prototype: HTMLRuxIconPresentToAllElement; new (): HTMLRuxIconPresentToAllElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPrintElement extends Components.RuxIconPrint, HTMLStencilElement { } var HTMLRuxIconPrintElement: { prototype: HTMLRuxIconPrintElement; new (): HTMLRuxIconPrintElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPrintDisabledElement extends Components.RuxIconPrintDisabled, HTMLStencilElement { } var HTMLRuxIconPrintDisabledElement: { prototype: HTMLRuxIconPrintDisabledElement; new (): HTMLRuxIconPrintDisabledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPriorityHighElement extends Components.RuxIconPriorityHigh, HTMLStencilElement { } var HTMLRuxIconPriorityHighElement: { prototype: HTMLRuxIconPriorityHighElement; new (): HTMLRuxIconPriorityHighElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconProcessorElement extends Components.RuxIconProcessor, HTMLStencilElement { } var HTMLRuxIconProcessorElement: { prototype: HTMLRuxIconProcessorElement; new (): HTMLRuxIconProcessorElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconProcessorAltElement extends Components.RuxIconProcessorAlt, HTMLStencilElement { } var HTMLRuxIconProcessorAltElement: { prototype: HTMLRuxIconProcessorAltElement; new (): HTMLRuxIconProcessorAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPropulsionPowerElement extends Components.RuxIconPropulsionPower, HTMLStencilElement { } var HTMLRuxIconPropulsionPowerElement: { prototype: HTMLRuxIconPropulsionPowerElement; new (): HTMLRuxIconPropulsionPowerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPublicElement extends Components.RuxIconPublic, HTMLStencilElement { } var HTMLRuxIconPublicElement: { prototype: HTMLRuxIconPublicElement; new (): HTMLRuxIconPublicElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconPublishElement extends Components.RuxIconPublish, HTMLStencilElement { } var HTMLRuxIconPublishElement: { prototype: HTMLRuxIconPublishElement; new (): HTMLRuxIconPublishElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconQueryBuilderElement extends Components.RuxIconQueryBuilder, HTMLStencilElement { } var HTMLRuxIconQueryBuilderElement: { prototype: HTMLRuxIconQueryBuilderElement; new (): HTMLRuxIconQueryBuilderElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconQuestionAnswerElement extends Components.RuxIconQuestionAnswer, HTMLStencilElement { } var HTMLRuxIconQuestionAnswerElement: { prototype: HTMLRuxIconQuestionAnswerElement; new (): HTMLRuxIconQuestionAnswerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconQueueElement extends Components.RuxIconQueue, HTMLStencilElement { } var HTMLRuxIconQueueElement: { prototype: HTMLRuxIconQueueElement; new (): HTMLRuxIconQueueElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconQueueMusicElement extends Components.RuxIconQueueMusic, HTMLStencilElement { } var HTMLRuxIconQueueMusicElement: { prototype: HTMLRuxIconQueueMusicElement; new (): HTMLRuxIconQueueMusicElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconQueuePlayNextElement extends Components.RuxIconQueuePlayNext, HTMLStencilElement { } var HTMLRuxIconQueuePlayNextElement: { prototype: HTMLRuxIconQueuePlayNextElement; new (): HTMLRuxIconQueuePlayNextElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRadioElement extends Components.RuxIconRadio, HTMLStencilElement { } var HTMLRuxIconRadioElement: { prototype: HTMLRuxIconRadioElement; new (): HTMLRuxIconRadioElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRadioButtonCheckedElement extends Components.RuxIconRadioButtonChecked, HTMLStencilElement { } var HTMLRuxIconRadioButtonCheckedElement: { prototype: HTMLRuxIconRadioButtonCheckedElement; new (): HTMLRuxIconRadioButtonCheckedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRadioButtonUncheckedElement extends Components.RuxIconRadioButtonUnchecked, HTMLStencilElement { } var HTMLRuxIconRadioButtonUncheckedElement: { prototype: HTMLRuxIconRadioButtonUncheckedElement; new (): HTMLRuxIconRadioButtonUncheckedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRateReviewElement extends Components.RuxIconRateReview, HTMLStencilElement { } var HTMLRuxIconRateReviewElement: { prototype: HTMLRuxIconRateReviewElement; new (): HTMLRuxIconRateReviewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReceiptElement extends Components.RuxIconReceipt, HTMLStencilElement { } var HTMLRuxIconReceiptElement: { prototype: HTMLRuxIconReceiptElement; new (): HTMLRuxIconReceiptElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRecentActorsElement extends Components.RuxIconRecentActors, HTMLStencilElement { } var HTMLRuxIconRecentActorsElement: { prototype: HTMLRuxIconRecentActorsElement; new (): HTMLRuxIconRecentActorsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRecordVoiceOverElement extends Components.RuxIconRecordVoiceOver, HTMLStencilElement { } var HTMLRuxIconRecordVoiceOverElement: { prototype: HTMLRuxIconRecordVoiceOverElement; new (): HTMLRuxIconRecordVoiceOverElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRedeemElement extends Components.RuxIconRedeem, HTMLStencilElement { } var HTMLRuxIconRedeemElement: { prototype: HTMLRuxIconRedeemElement; new (): HTMLRuxIconRedeemElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRedoElement extends Components.RuxIconRedo, HTMLStencilElement { } var HTMLRuxIconRedoElement: { prototype: HTMLRuxIconRedoElement; new (): HTMLRuxIconRedoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRefreshElement extends Components.RuxIconRefresh, HTMLStencilElement { } var HTMLRuxIconRefreshElement: { prototype: HTMLRuxIconRefreshElement; new (): HTMLRuxIconRefreshElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReleaseElement extends Components.RuxIconRelease, HTMLStencilElement { } var HTMLRuxIconReleaseElement: { prototype: HTMLRuxIconReleaseElement; new (): HTMLRuxIconReleaseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRemoveElement extends Components.RuxIconRemove, HTMLStencilElement { } var HTMLRuxIconRemoveElement: { prototype: HTMLRuxIconRemoveElement; new (): HTMLRuxIconRemoveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRemoveCircleElement extends Components.RuxIconRemoveCircle, HTMLStencilElement { } var HTMLRuxIconRemoveCircleElement: { prototype: HTMLRuxIconRemoveCircleElement; new (): HTMLRuxIconRemoveCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRemoveCircleOutlineElement extends Components.RuxIconRemoveCircleOutline, HTMLStencilElement { } var HTMLRuxIconRemoveCircleOutlineElement: { prototype: HTMLRuxIconRemoveCircleOutlineElement; new (): HTMLRuxIconRemoveCircleOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRemoveFromQueueElement extends Components.RuxIconRemoveFromQueue, HTMLStencilElement { } var HTMLRuxIconRemoveFromQueueElement: { prototype: HTMLRuxIconRemoveFromQueueElement; new (): HTMLRuxIconRemoveFromQueueElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRemoveRedEyeElement extends Components.RuxIconRemoveRedEye, HTMLStencilElement { } var HTMLRuxIconRemoveRedEyeElement: { prototype: HTMLRuxIconRemoveRedEyeElement; new (): HTMLRuxIconRemoveRedEyeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRemoveShoppingCartElement extends Components.RuxIconRemoveShoppingCart, HTMLStencilElement { } var HTMLRuxIconRemoveShoppingCartElement: { prototype: HTMLRuxIconRemoveShoppingCartElement; new (): HTMLRuxIconRemoveShoppingCartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReorderElement extends Components.RuxIconReorder, HTMLStencilElement { } var HTMLRuxIconReorderElement: { prototype: HTMLRuxIconReorderElement; new (): HTMLRuxIconReorderElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRepeatElement extends Components.RuxIconRepeat, HTMLStencilElement { } var HTMLRuxIconRepeatElement: { prototype: HTMLRuxIconRepeatElement; new (): HTMLRuxIconRepeatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRepeatOneElement extends Components.RuxIconRepeatOne, HTMLStencilElement { } var HTMLRuxIconRepeatOneElement: { prototype: HTMLRuxIconRepeatOneElement; new (): HTMLRuxIconRepeatOneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReplayElement extends Components.RuxIconReplay, HTMLStencilElement { } var HTMLRuxIconReplayElement: { prototype: HTMLRuxIconReplayElement; new (): HTMLRuxIconReplayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReplay10Element extends Components.RuxIconReplay10, HTMLStencilElement { } var HTMLRuxIconReplay10Element: { prototype: HTMLRuxIconReplay10Element; new (): HTMLRuxIconReplay10Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReplay30Element extends Components.RuxIconReplay30, HTMLStencilElement { } var HTMLRuxIconReplay30Element: { prototype: HTMLRuxIconReplay30Element; new (): HTMLRuxIconReplay30Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReplay5Element extends Components.RuxIconReplay5, HTMLStencilElement { } var HTMLRuxIconReplay5Element: { prototype: HTMLRuxIconReplay5Element; new (): HTMLRuxIconReplay5Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReplyElement extends Components.RuxIconReply, HTMLStencilElement { } var HTMLRuxIconReplyElement: { prototype: HTMLRuxIconReplyElement; new (): HTMLRuxIconReplyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReplyAllElement extends Components.RuxIconReplyAll, HTMLStencilElement { } var HTMLRuxIconReplyAllElement: { prototype: HTMLRuxIconReplyAllElement; new (): HTMLRuxIconReplyAllElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReportElement extends Components.RuxIconReport, HTMLStencilElement { } var HTMLRuxIconReportElement: { prototype: HTMLRuxIconReportElement; new (): HTMLRuxIconReportElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReportOffElement extends Components.RuxIconReportOff, HTMLStencilElement { } var HTMLRuxIconReportOffElement: { prototype: HTMLRuxIconReportOffElement; new (): HTMLRuxIconReportOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconReportProblemElement extends Components.RuxIconReportProblem, HTMLStencilElement { } var HTMLRuxIconReportProblemElement: { prototype: HTMLRuxIconReportProblemElement; new (): HTMLRuxIconReportProblemElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRestaurantElement extends Components.RuxIconRestaurant, HTMLStencilElement { } var HTMLRuxIconRestaurantElement: { prototype: HTMLRuxIconRestaurantElement; new (): HTMLRuxIconRestaurantElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRestaurantMenuElement extends Components.RuxIconRestaurantMenu, HTMLStencilElement { } var HTMLRuxIconRestaurantMenuElement: { prototype: HTMLRuxIconRestaurantMenuElement; new (): HTMLRuxIconRestaurantMenuElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRestoreElement extends Components.RuxIconRestore, HTMLStencilElement { } var HTMLRuxIconRestoreElement: { prototype: HTMLRuxIconRestoreElement; new (): HTMLRuxIconRestoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRestoreFromTrashElement extends Components.RuxIconRestoreFromTrash, HTMLStencilElement { } var HTMLRuxIconRestoreFromTrashElement: { prototype: HTMLRuxIconRestoreFromTrashElement; new (): HTMLRuxIconRestoreFromTrashElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRestorePageElement extends Components.RuxIconRestorePage, HTMLStencilElement { } var HTMLRuxIconRestorePageElement: { prototype: HTMLRuxIconRestorePageElement; new (): HTMLRuxIconRestorePageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRingVolumeElement extends Components.RuxIconRingVolume, HTMLStencilElement { } var HTMLRuxIconRingVolumeElement: { prototype: HTMLRuxIconRingVolumeElement; new (): HTMLRuxIconRingVolumeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRoomElement extends Components.RuxIconRoom, HTMLStencilElement { } var HTMLRuxIconRoomElement: { prototype: HTMLRuxIconRoomElement; new (): HTMLRuxIconRoomElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRoomServiceElement extends Components.RuxIconRoomService, HTMLStencilElement { } var HTMLRuxIconRoomServiceElement: { prototype: HTMLRuxIconRoomServiceElement; new (): HTMLRuxIconRoomServiceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRotate90DegreesCcElement extends Components.RuxIconRotate90DegreesCc, HTMLStencilElement { } var HTMLRuxIconRotate90DegreesCcElement: { prototype: HTMLRuxIconRotate90DegreesCcElement; new (): HTMLRuxIconRotate90DegreesCcElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRotateLeftElement extends Components.RuxIconRotateLeft, HTMLStencilElement { } var HTMLRuxIconRotateLeftElement: { prototype: HTMLRuxIconRotateLeftElement; new (): HTMLRuxIconRotateLeftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRotateRightElement extends Components.RuxIconRotateRight, HTMLStencilElement { } var HTMLRuxIconRotateRightElement: { prototype: HTMLRuxIconRotateRightElement; new (): HTMLRuxIconRotateRightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRoundedCornerElement extends Components.RuxIconRoundedCorner, HTMLStencilElement { } var HTMLRuxIconRoundedCornerElement: { prototype: HTMLRuxIconRoundedCornerElement; new (): HTMLRuxIconRoundedCornerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRouterElement extends Components.RuxIconRouter, HTMLStencilElement { } var HTMLRuxIconRouterElement: { prototype: HTMLRuxIconRouterElement; new (): HTMLRuxIconRouterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRowingElement extends Components.RuxIconRowing, HTMLStencilElement { } var HTMLRuxIconRowingElement: { prototype: HTMLRuxIconRowingElement; new (): HTMLRuxIconRowingElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRssFeedElement extends Components.RuxIconRssFeed, HTMLStencilElement { } var HTMLRuxIconRssFeedElement: { prototype: HTMLRuxIconRssFeedElement; new (): HTMLRuxIconRssFeedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconRvHookupElement extends Components.RuxIconRvHookup, HTMLStencilElement { } var HTMLRuxIconRvHookupElement: { prototype: HTMLRuxIconRvHookupElement; new (): HTMLRuxIconRvHookupElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSatelliteElement extends Components.RuxIconSatellite, HTMLStencilElement { } var HTMLRuxIconSatelliteElement: { prototype: HTMLRuxIconSatelliteElement; new (): HTMLRuxIconSatelliteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSatelliteOffElement extends Components.RuxIconSatelliteOff, HTMLStencilElement { } var HTMLRuxIconSatelliteOffElement: { prototype: HTMLRuxIconSatelliteOffElement; new (): HTMLRuxIconSatelliteOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSatelliteReceiveElement extends Components.RuxIconSatelliteReceive, HTMLStencilElement { } var HTMLRuxIconSatelliteReceiveElement: { prototype: HTMLRuxIconSatelliteReceiveElement; new (): HTMLRuxIconSatelliteReceiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSatelliteTransmitElement extends Components.RuxIconSatelliteTransmit, HTMLStencilElement { } var HTMLRuxIconSatelliteTransmitElement: { prototype: HTMLRuxIconSatelliteTransmitElement; new (): HTMLRuxIconSatelliteTransmitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSaveElement extends Components.RuxIconSave, HTMLStencilElement { } var HTMLRuxIconSaveElement: { prototype: HTMLRuxIconSaveElement; new (): HTMLRuxIconSaveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSaveAltElement extends Components.RuxIconSaveAlt, HTMLStencilElement { } var HTMLRuxIconSaveAltElement: { prototype: HTMLRuxIconSaveAltElement; new (): HTMLRuxIconSaveAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScannerElement extends Components.RuxIconScanner, HTMLStencilElement { } var HTMLRuxIconScannerElement: { prototype: HTMLRuxIconScannerElement; new (): HTMLRuxIconScannerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScatterPlotElement extends Components.RuxIconScatterPlot, HTMLStencilElement { } var HTMLRuxIconScatterPlotElement: { prototype: HTMLRuxIconScatterPlotElement; new (): HTMLRuxIconScatterPlotElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScheduleElement extends Components.RuxIconSchedule, HTMLStencilElement { } var HTMLRuxIconScheduleElement: { prototype: HTMLRuxIconScheduleElement; new (): HTMLRuxIconScheduleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSchoolElement extends Components.RuxIconSchool, HTMLStencilElement { } var HTMLRuxIconSchoolElement: { prototype: HTMLRuxIconSchoolElement; new (): HTMLRuxIconSchoolElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScoreElement extends Components.RuxIconScore, HTMLStencilElement { } var HTMLRuxIconScoreElement: { prototype: HTMLRuxIconScoreElement; new (): HTMLRuxIconScoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScreenLockLandscapeElement extends Components.RuxIconScreenLockLandscape, HTMLStencilElement { } var HTMLRuxIconScreenLockLandscapeElement: { prototype: HTMLRuxIconScreenLockLandscapeElement; new (): HTMLRuxIconScreenLockLandscapeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScreenLockPortraitElement extends Components.RuxIconScreenLockPortrait, HTMLStencilElement { } var HTMLRuxIconScreenLockPortraitElement: { prototype: HTMLRuxIconScreenLockPortraitElement; new (): HTMLRuxIconScreenLockPortraitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScreenLockRotationElement extends Components.RuxIconScreenLockRotation, HTMLStencilElement { } var HTMLRuxIconScreenLockRotationElement: { prototype: HTMLRuxIconScreenLockRotationElement; new (): HTMLRuxIconScreenLockRotationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScreenRotationElement extends Components.RuxIconScreenRotation, HTMLStencilElement { } var HTMLRuxIconScreenRotationElement: { prototype: HTMLRuxIconScreenRotationElement; new (): HTMLRuxIconScreenRotationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconScreenShareElement extends Components.RuxIconScreenShare, HTMLStencilElement { } var HTMLRuxIconScreenShareElement: { prototype: HTMLRuxIconScreenShareElement; new (): HTMLRuxIconScreenShareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSdCardElement extends Components.RuxIconSdCard, HTMLStencilElement { } var HTMLRuxIconSdCardElement: { prototype: HTMLRuxIconSdCardElement; new (): HTMLRuxIconSdCardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSdStorageElement extends Components.RuxIconSdStorage, HTMLStencilElement { } var HTMLRuxIconSdStorageElement: { prototype: HTMLRuxIconSdStorageElement; new (): HTMLRuxIconSdStorageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSearchElement extends Components.RuxIconSearch, HTMLStencilElement { } var HTMLRuxIconSearchElement: { prototype: HTMLRuxIconSearchElement; new (): HTMLRuxIconSearchElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSeatElement extends Components.RuxIconSeat, HTMLStencilElement { } var HTMLRuxIconSeatElement: { prototype: HTMLRuxIconSeatElement; new (): HTMLRuxIconSeatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSecurityElement extends Components.RuxIconSecurity, HTMLStencilElement { } var HTMLRuxIconSecurityElement: { prototype: HTMLRuxIconSecurityElement; new (): HTMLRuxIconSecurityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSelectAllElement extends Components.RuxIconSelectAll, HTMLStencilElement { } var HTMLRuxIconSelectAllElement: { prototype: HTMLRuxIconSelectAllElement; new (): HTMLRuxIconSelectAllElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSendElement extends Components.RuxIconSend, HTMLStencilElement { } var HTMLRuxIconSendElement: { prototype: HTMLRuxIconSendElement; new (): HTMLRuxIconSendElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSentimentDissatisfiedElement extends Components.RuxIconSentimentDissatisfied, HTMLStencilElement { } var HTMLRuxIconSentimentDissatisfiedElement: { prototype: HTMLRuxIconSentimentDissatisfiedElement; new (): HTMLRuxIconSentimentDissatisfiedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSentimentSatisfiedElement extends Components.RuxIconSentimentSatisfied, HTMLStencilElement { } var HTMLRuxIconSentimentSatisfiedElement: { prototype: HTMLRuxIconSentimentSatisfiedElement; new (): HTMLRuxIconSentimentSatisfiedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSentimentSatisfiedAltElement extends Components.RuxIconSentimentSatisfiedAlt, HTMLStencilElement { } var HTMLRuxIconSentimentSatisfiedAltElement: { prototype: HTMLRuxIconSentimentSatisfiedAltElement; new (): HTMLRuxIconSentimentSatisfiedAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSentimentVeryDissatisfiedElement extends Components.RuxIconSentimentVeryDissatisfied, HTMLStencilElement { } var HTMLRuxIconSentimentVeryDissatisfiedElement: { prototype: HTMLRuxIconSentimentVeryDissatisfiedElement; new (): HTMLRuxIconSentimentVeryDissatisfiedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSentimentVerySatisfiedElement extends Components.RuxIconSentimentVerySatisfied, HTMLStencilElement { } var HTMLRuxIconSentimentVerySatisfiedElement: { prototype: HTMLRuxIconSentimentVerySatisfiedElement; new (): HTMLRuxIconSentimentVerySatisfiedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSetPowerElement extends Components.RuxIconSetPower, HTMLStencilElement { } var HTMLRuxIconSetPowerElement: { prototype: HTMLRuxIconSetPowerElement; new (): HTMLRuxIconSetPowerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsElement extends Components.RuxIconSettings, HTMLStencilElement { } var HTMLRuxIconSettingsElement: { prototype: HTMLRuxIconSettingsElement; new (): HTMLRuxIconSettingsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsApplicationsElement extends Components.RuxIconSettingsApplications, HTMLStencilElement { } var HTMLRuxIconSettingsApplicationsElement: { prototype: HTMLRuxIconSettingsApplicationsElement; new (): HTMLRuxIconSettingsApplicationsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsBackupRestoreElement extends Components.RuxIconSettingsBackupRestore, HTMLStencilElement { } var HTMLRuxIconSettingsBackupRestoreElement: { prototype: HTMLRuxIconSettingsBackupRestoreElement; new (): HTMLRuxIconSettingsBackupRestoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsBluetoothElement extends Components.RuxIconSettingsBluetooth, HTMLStencilElement { } var HTMLRuxIconSettingsBluetoothElement: { prototype: HTMLRuxIconSettingsBluetoothElement; new (): HTMLRuxIconSettingsBluetoothElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsBrightnessElement extends Components.RuxIconSettingsBrightness, HTMLStencilElement { } var HTMLRuxIconSettingsBrightnessElement: { prototype: HTMLRuxIconSettingsBrightnessElement; new (): HTMLRuxIconSettingsBrightnessElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsCellElement extends Components.RuxIconSettingsCell, HTMLStencilElement { } var HTMLRuxIconSettingsCellElement: { prototype: HTMLRuxIconSettingsCellElement; new (): HTMLRuxIconSettingsCellElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsEthernetElement extends Components.RuxIconSettingsEthernet, HTMLStencilElement { } var HTMLRuxIconSettingsEthernetElement: { prototype: HTMLRuxIconSettingsEthernetElement; new (): HTMLRuxIconSettingsEthernetElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsInputAntennaElement extends Components.RuxIconSettingsInputAntenna, HTMLStencilElement { } var HTMLRuxIconSettingsInputAntennaElement: { prototype: HTMLRuxIconSettingsInputAntennaElement; new (): HTMLRuxIconSettingsInputAntennaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsInputComponentElement extends Components.RuxIconSettingsInputComponent, HTMLStencilElement { } var HTMLRuxIconSettingsInputComponentElement: { prototype: HTMLRuxIconSettingsInputComponentElement; new (): HTMLRuxIconSettingsInputComponentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsInputCompositeElement extends Components.RuxIconSettingsInputComposite, HTMLStencilElement { } var HTMLRuxIconSettingsInputCompositeElement: { prototype: HTMLRuxIconSettingsInputCompositeElement; new (): HTMLRuxIconSettingsInputCompositeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsInputHdmiElement extends Components.RuxIconSettingsInputHdmi, HTMLStencilElement { } var HTMLRuxIconSettingsInputHdmiElement: { prototype: HTMLRuxIconSettingsInputHdmiElement; new (): HTMLRuxIconSettingsInputHdmiElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsInputSvideoElement extends Components.RuxIconSettingsInputSvideo, HTMLStencilElement { } var HTMLRuxIconSettingsInputSvideoElement: { prototype: HTMLRuxIconSettingsInputSvideoElement; new (): HTMLRuxIconSettingsInputSvideoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsOverscanElement extends Components.RuxIconSettingsOverscan, HTMLStencilElement { } var HTMLRuxIconSettingsOverscanElement: { prototype: HTMLRuxIconSettingsOverscanElement; new (): HTMLRuxIconSettingsOverscanElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsPhoneElement extends Components.RuxIconSettingsPhone, HTMLStencilElement { } var HTMLRuxIconSettingsPhoneElement: { prototype: HTMLRuxIconSettingsPhoneElement; new (): HTMLRuxIconSettingsPhoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsPowerElement extends Components.RuxIconSettingsPower, HTMLStencilElement { } var HTMLRuxIconSettingsPowerElement: { prototype: HTMLRuxIconSettingsPowerElement; new (): HTMLRuxIconSettingsPowerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsRemoteElement extends Components.RuxIconSettingsRemote, HTMLStencilElement { } var HTMLRuxIconSettingsRemoteElement: { prototype: HTMLRuxIconSettingsRemoteElement; new (): HTMLRuxIconSettingsRemoteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsSystemDaydreamElement extends Components.RuxIconSettingsSystemDaydream, HTMLStencilElement { } var HTMLRuxIconSettingsSystemDaydreamElement: { prototype: HTMLRuxIconSettingsSystemDaydreamElement; new (): HTMLRuxIconSettingsSystemDaydreamElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSettingsVoiceElement extends Components.RuxIconSettingsVoice, HTMLStencilElement { } var HTMLRuxIconSettingsVoiceElement: { prototype: HTMLRuxIconSettingsVoiceElement; new (): HTMLRuxIconSettingsVoiceElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShareElement extends Components.RuxIconShare, HTMLStencilElement { } var HTMLRuxIconShareElement: { prototype: HTMLRuxIconShareElement; new (): HTMLRuxIconShareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShopElement extends Components.RuxIconShop, HTMLStencilElement { } var HTMLRuxIconShopElement: { prototype: HTMLRuxIconShopElement; new (): HTMLRuxIconShopElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShopTwoElement extends Components.RuxIconShopTwo, HTMLStencilElement { } var HTMLRuxIconShopTwoElement: { prototype: HTMLRuxIconShopTwoElement; new (): HTMLRuxIconShopTwoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShoppingBasketElement extends Components.RuxIconShoppingBasket, HTMLStencilElement { } var HTMLRuxIconShoppingBasketElement: { prototype: HTMLRuxIconShoppingBasketElement; new (): HTMLRuxIconShoppingBasketElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShoppingCartElement extends Components.RuxIconShoppingCart, HTMLStencilElement { } var HTMLRuxIconShoppingCartElement: { prototype: HTMLRuxIconShoppingCartElement; new (): HTMLRuxIconShoppingCartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShortTextElement extends Components.RuxIconShortText, HTMLStencilElement { } var HTMLRuxIconShortTextElement: { prototype: HTMLRuxIconShortTextElement; new (): HTMLRuxIconShortTextElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShowChartElement extends Components.RuxIconShowChart, HTMLStencilElement { } var HTMLRuxIconShowChartElement: { prototype: HTMLRuxIconShowChartElement; new (): HTMLRuxIconShowChartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShuffleElement extends Components.RuxIconShuffle, HTMLStencilElement { } var HTMLRuxIconShuffleElement: { prototype: HTMLRuxIconShuffleElement; new (): HTMLRuxIconShuffleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconShutterSpeedElement extends Components.RuxIconShutterSpeed, HTMLStencilElement { } var HTMLRuxIconShutterSpeedElement: { prototype: HTMLRuxIconShutterSpeedElement; new (): HTMLRuxIconShutterSpeedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellular0BarElement extends Components.RuxIconSignalCellular0Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellular0BarElement: { prototype: HTMLRuxIconSignalCellular0BarElement; new (): HTMLRuxIconSignalCellular0BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellular1BarElement extends Components.RuxIconSignalCellular1Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellular1BarElement: { prototype: HTMLRuxIconSignalCellular1BarElement; new (): HTMLRuxIconSignalCellular1BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellular2BarElement extends Components.RuxIconSignalCellular2Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellular2BarElement: { prototype: HTMLRuxIconSignalCellular2BarElement; new (): HTMLRuxIconSignalCellular2BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellular3BarElement extends Components.RuxIconSignalCellular3Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellular3BarElement: { prototype: HTMLRuxIconSignalCellular3BarElement; new (): HTMLRuxIconSignalCellular3BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellular4BarElement extends Components.RuxIconSignalCellular4Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellular4BarElement: { prototype: HTMLRuxIconSignalCellular4BarElement; new (): HTMLRuxIconSignalCellular4BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularAltElement extends Components.RuxIconSignalCellularAlt, HTMLStencilElement { } var HTMLRuxIconSignalCellularAltElement: { prototype: HTMLRuxIconSignalCellularAltElement; new (): HTMLRuxIconSignalCellularAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularConnectedNoInternet0BarElement extends Components.RuxIconSignalCellularConnectedNoInternet0Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellularConnectedNoInternet0BarElement: { prototype: HTMLRuxIconSignalCellularConnectedNoInternet0BarElement; new (): HTMLRuxIconSignalCellularConnectedNoInternet0BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularConnectedNoInternet1BarElement extends Components.RuxIconSignalCellularConnectedNoInternet1Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellularConnectedNoInternet1BarElement: { prototype: HTMLRuxIconSignalCellularConnectedNoInternet1BarElement; new (): HTMLRuxIconSignalCellularConnectedNoInternet1BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularConnectedNoInternet2BarElement extends Components.RuxIconSignalCellularConnectedNoInternet2Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellularConnectedNoInternet2BarElement: { prototype: HTMLRuxIconSignalCellularConnectedNoInternet2BarElement; new (): HTMLRuxIconSignalCellularConnectedNoInternet2BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularConnectedNoInternet3BarElement extends Components.RuxIconSignalCellularConnectedNoInternet3Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellularConnectedNoInternet3BarElement: { prototype: HTMLRuxIconSignalCellularConnectedNoInternet3BarElement; new (): HTMLRuxIconSignalCellularConnectedNoInternet3BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularConnectedNoInternet4BarElement extends Components.RuxIconSignalCellularConnectedNoInternet4Bar, HTMLStencilElement { } var HTMLRuxIconSignalCellularConnectedNoInternet4BarElement: { prototype: HTMLRuxIconSignalCellularConnectedNoInternet4BarElement; new (): HTMLRuxIconSignalCellularConnectedNoInternet4BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularNoSimElement extends Components.RuxIconSignalCellularNoSim, HTMLStencilElement { } var HTMLRuxIconSignalCellularNoSimElement: { prototype: HTMLRuxIconSignalCellularNoSimElement; new (): HTMLRuxIconSignalCellularNoSimElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularNullElement extends Components.RuxIconSignalCellularNull, HTMLStencilElement { } var HTMLRuxIconSignalCellularNullElement: { prototype: HTMLRuxIconSignalCellularNullElement; new (): HTMLRuxIconSignalCellularNullElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalCellularOffElement extends Components.RuxIconSignalCellularOff, HTMLStencilElement { } var HTMLRuxIconSignalCellularOffElement: { prototype: HTMLRuxIconSignalCellularOffElement; new (): HTMLRuxIconSignalCellularOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi0BarElement extends Components.RuxIconSignalWifi0Bar, HTMLStencilElement { } var HTMLRuxIconSignalWifi0BarElement: { prototype: HTMLRuxIconSignalWifi0BarElement; new (): HTMLRuxIconSignalWifi0BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi1BarElement extends Components.RuxIconSignalWifi1Bar, HTMLStencilElement { } var HTMLRuxIconSignalWifi1BarElement: { prototype: HTMLRuxIconSignalWifi1BarElement; new (): HTMLRuxIconSignalWifi1BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi1BarLockElement extends Components.RuxIconSignalWifi1BarLock, HTMLStencilElement { } var HTMLRuxIconSignalWifi1BarLockElement: { prototype: HTMLRuxIconSignalWifi1BarLockElement; new (): HTMLRuxIconSignalWifi1BarLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi2BarElement extends Components.RuxIconSignalWifi2Bar, HTMLStencilElement { } var HTMLRuxIconSignalWifi2BarElement: { prototype: HTMLRuxIconSignalWifi2BarElement; new (): HTMLRuxIconSignalWifi2BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi2BarLockElement extends Components.RuxIconSignalWifi2BarLock, HTMLStencilElement { } var HTMLRuxIconSignalWifi2BarLockElement: { prototype: HTMLRuxIconSignalWifi2BarLockElement; new (): HTMLRuxIconSignalWifi2BarLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi3BarElement extends Components.RuxIconSignalWifi3Bar, HTMLStencilElement { } var HTMLRuxIconSignalWifi3BarElement: { prototype: HTMLRuxIconSignalWifi3BarElement; new (): HTMLRuxIconSignalWifi3BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi3BarLockElement extends Components.RuxIconSignalWifi3BarLock, HTMLStencilElement { } var HTMLRuxIconSignalWifi3BarLockElement: { prototype: HTMLRuxIconSignalWifi3BarLockElement; new (): HTMLRuxIconSignalWifi3BarLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi4BarElement extends Components.RuxIconSignalWifi4Bar, HTMLStencilElement { } var HTMLRuxIconSignalWifi4BarElement: { prototype: HTMLRuxIconSignalWifi4BarElement; new (): HTMLRuxIconSignalWifi4BarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifi4BarLockElement extends Components.RuxIconSignalWifi4BarLock, HTMLStencilElement { } var HTMLRuxIconSignalWifi4BarLockElement: { prototype: HTMLRuxIconSignalWifi4BarLockElement; new (): HTMLRuxIconSignalWifi4BarLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSignalWifiOffElement extends Components.RuxIconSignalWifiOff, HTMLStencilElement { } var HTMLRuxIconSignalWifiOffElement: { prototype: HTMLRuxIconSignalWifiOffElement; new (): HTMLRuxIconSignalWifiOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSimCardElement extends Components.RuxIconSimCard, HTMLStencilElement { } var HTMLRuxIconSimCardElement: { prototype: HTMLRuxIconSimCardElement; new (): HTMLRuxIconSimCardElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSkipNextElement extends Components.RuxIconSkipNext, HTMLStencilElement { } var HTMLRuxIconSkipNextElement: { prototype: HTMLRuxIconSkipNextElement; new (): HTMLRuxIconSkipNextElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSkipPreviousElement extends Components.RuxIconSkipPrevious, HTMLStencilElement { } var HTMLRuxIconSkipPreviousElement: { prototype: HTMLRuxIconSkipPreviousElement; new (): HTMLRuxIconSkipPreviousElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSlideshowElement extends Components.RuxIconSlideshow, HTMLStencilElement { } var HTMLRuxIconSlideshowElement: { prototype: HTMLRuxIconSlideshowElement; new (): HTMLRuxIconSlideshowElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSlowMotionVideoElement extends Components.RuxIconSlowMotionVideo, HTMLStencilElement { } var HTMLRuxIconSlowMotionVideoElement: { prototype: HTMLRuxIconSlowMotionVideoElement; new (): HTMLRuxIconSlowMotionVideoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSmartphoneElement extends Components.RuxIconSmartphone, HTMLStencilElement { } var HTMLRuxIconSmartphoneElement: { prototype: HTMLRuxIconSmartphoneElement; new (): HTMLRuxIconSmartphoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSmokeFreeElement extends Components.RuxIconSmokeFree, HTMLStencilElement { } var HTMLRuxIconSmokeFreeElement: { prototype: HTMLRuxIconSmokeFreeElement; new (): HTMLRuxIconSmokeFreeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSmokingRoomsElement extends Components.RuxIconSmokingRooms, HTMLStencilElement { } var HTMLRuxIconSmokingRoomsElement: { prototype: HTMLRuxIconSmokingRoomsElement; new (): HTMLRuxIconSmokingRoomsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSmsElement extends Components.RuxIconSms, HTMLStencilElement { } var HTMLRuxIconSmsElement: { prototype: HTMLRuxIconSmsElement; new (): HTMLRuxIconSmsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSmsFailedElement extends Components.RuxIconSmsFailed, HTMLStencilElement { } var HTMLRuxIconSmsFailedElement: { prototype: HTMLRuxIconSmsFailedElement; new (): HTMLRuxIconSmsFailedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSnoozeElement extends Components.RuxIconSnooze, HTMLStencilElement { } var HTMLRuxIconSnoozeElement: { prototype: HTMLRuxIconSnoozeElement; new (): HTMLRuxIconSnoozeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSolarElement extends Components.RuxIconSolar, HTMLStencilElement { } var HTMLRuxIconSolarElement: { prototype: HTMLRuxIconSolarElement; new (): HTMLRuxIconSolarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSortElement extends Components.RuxIconSort, HTMLStencilElement { } var HTMLRuxIconSortElement: { prototype: HTMLRuxIconSortElement; new (): HTMLRuxIconSortElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSortByAlphaElement extends Components.RuxIconSortByAlpha, HTMLStencilElement { } var HTMLRuxIconSortByAlphaElement: { prototype: HTMLRuxIconSortByAlphaElement; new (): HTMLRuxIconSortByAlphaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpaElement extends Components.RuxIconSpa, HTMLStencilElement { } var HTMLRuxIconSpaElement: { prototype: HTMLRuxIconSpaElement; new (): HTMLRuxIconSpaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpaceBarElement extends Components.RuxIconSpaceBar, HTMLStencilElement { } var HTMLRuxIconSpaceBarElement: { prototype: HTMLRuxIconSpaceBarElement; new (): HTMLRuxIconSpaceBarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpeakerElement extends Components.RuxIconSpeaker, HTMLStencilElement { } var HTMLRuxIconSpeakerElement: { prototype: HTMLRuxIconSpeakerElement; new (): HTMLRuxIconSpeakerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpeakerGroupElement extends Components.RuxIconSpeakerGroup, HTMLStencilElement { } var HTMLRuxIconSpeakerGroupElement: { prototype: HTMLRuxIconSpeakerGroupElement; new (): HTMLRuxIconSpeakerGroupElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpeakerNotesElement extends Components.RuxIconSpeakerNotes, HTMLStencilElement { } var HTMLRuxIconSpeakerNotesElement: { prototype: HTMLRuxIconSpeakerNotesElement; new (): HTMLRuxIconSpeakerNotesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpeakerNotesOffElement extends Components.RuxIconSpeakerNotesOff, HTMLStencilElement { } var HTMLRuxIconSpeakerNotesOffElement: { prototype: HTMLRuxIconSpeakerNotesOffElement; new (): HTMLRuxIconSpeakerNotesOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpeakerPhoneElement extends Components.RuxIconSpeakerPhone, HTMLStencilElement { } var HTMLRuxIconSpeakerPhoneElement: { prototype: HTMLRuxIconSpeakerPhoneElement; new (): HTMLRuxIconSpeakerPhoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSpellcheckElement extends Components.RuxIconSpellcheck, HTMLStencilElement { } var HTMLRuxIconSpellcheckElement: { prototype: HTMLRuxIconSpellcheckElement; new (): HTMLRuxIconSpellcheckElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStarElement extends Components.RuxIconStar, HTMLStencilElement { } var HTMLRuxIconStarElement: { prototype: HTMLRuxIconStarElement; new (): HTMLRuxIconStarElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStarBorderElement extends Components.RuxIconStarBorder, HTMLStencilElement { } var HTMLRuxIconStarBorderElement: { prototype: HTMLRuxIconStarBorderElement; new (): HTMLRuxIconStarBorderElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStarHalfElement extends Components.RuxIconStarHalf, HTMLStencilElement { } var HTMLRuxIconStarHalfElement: { prototype: HTMLRuxIconStarHalfElement; new (): HTMLRuxIconStarHalfElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStarRateElement extends Components.RuxIconStarRate, HTMLStencilElement { } var HTMLRuxIconStarRateElement: { prototype: HTMLRuxIconStarRateElement; new (): HTMLRuxIconStarRateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStarsElement extends Components.RuxIconStars, HTMLStencilElement { } var HTMLRuxIconStarsElement: { prototype: HTMLRuxIconStarsElement; new (): HTMLRuxIconStarsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStayCurrentLandscapeElement extends Components.RuxIconStayCurrentLandscape, HTMLStencilElement { } var HTMLRuxIconStayCurrentLandscapeElement: { prototype: HTMLRuxIconStayCurrentLandscapeElement; new (): HTMLRuxIconStayCurrentLandscapeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStayCurrentPortraitElement extends Components.RuxIconStayCurrentPortrait, HTMLStencilElement { } var HTMLRuxIconStayCurrentPortraitElement: { prototype: HTMLRuxIconStayCurrentPortraitElement; new (): HTMLRuxIconStayCurrentPortraitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStayPrimaryLandscapeElement extends Components.RuxIconStayPrimaryLandscape, HTMLStencilElement { } var HTMLRuxIconStayPrimaryLandscapeElement: { prototype: HTMLRuxIconStayPrimaryLandscapeElement; new (): HTMLRuxIconStayPrimaryLandscapeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStayPrimaryPortraitElement extends Components.RuxIconStayPrimaryPortrait, HTMLStencilElement { } var HTMLRuxIconStayPrimaryPortraitElement: { prototype: HTMLRuxIconStayPrimaryPortraitElement; new (): HTMLRuxIconStayPrimaryPortraitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStopElement extends Components.RuxIconStop, HTMLStencilElement { } var HTMLRuxIconStopElement: { prototype: HTMLRuxIconStopElement; new (): HTMLRuxIconStopElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStopScreenShareElement extends Components.RuxIconStopScreenShare, HTMLStencilElement { } var HTMLRuxIconStopScreenShareElement: { prototype: HTMLRuxIconStopScreenShareElement; new (): HTMLRuxIconStopScreenShareElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStorageElement extends Components.RuxIconStorage, HTMLStencilElement { } var HTMLRuxIconStorageElement: { prototype: HTMLRuxIconStorageElement; new (): HTMLRuxIconStorageElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStoreElement extends Components.RuxIconStore, HTMLStencilElement { } var HTMLRuxIconStoreElement: { prototype: HTMLRuxIconStoreElement; new (): HTMLRuxIconStoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStoreMallDirectoryElement extends Components.RuxIconStoreMallDirectory, HTMLStencilElement { } var HTMLRuxIconStoreMallDirectoryElement: { prototype: HTMLRuxIconStoreMallDirectoryElement; new (): HTMLRuxIconStoreMallDirectoryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStraightenElement extends Components.RuxIconStraighten, HTMLStencilElement { } var HTMLRuxIconStraightenElement: { prototype: HTMLRuxIconStraightenElement; new (): HTMLRuxIconStraightenElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStreetviewElement extends Components.RuxIconStreetview, HTMLStencilElement { } var HTMLRuxIconStreetviewElement: { prototype: HTMLRuxIconStreetviewElement; new (): HTMLRuxIconStreetviewElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStrikethroughSElement extends Components.RuxIconStrikethroughS, HTMLStencilElement { } var HTMLRuxIconStrikethroughSElement: { prototype: HTMLRuxIconStrikethroughSElement; new (): HTMLRuxIconStrikethroughSElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconStyleElement extends Components.RuxIconStyle, HTMLStencilElement { } var HTMLRuxIconStyleElement: { prototype: HTMLRuxIconStyleElement; new (): HTMLRuxIconStyleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSubdirectoryArrowLeftElement extends Components.RuxIconSubdirectoryArrowLeft, HTMLStencilElement { } var HTMLRuxIconSubdirectoryArrowLeftElement: { prototype: HTMLRuxIconSubdirectoryArrowLeftElement; new (): HTMLRuxIconSubdirectoryArrowLeftElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSubdirectoryArrowRightElement extends Components.RuxIconSubdirectoryArrowRight, HTMLStencilElement { } var HTMLRuxIconSubdirectoryArrowRightElement: { prototype: HTMLRuxIconSubdirectoryArrowRightElement; new (): HTMLRuxIconSubdirectoryArrowRightElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSubjectElement extends Components.RuxIconSubject, HTMLStencilElement { } var HTMLRuxIconSubjectElement: { prototype: HTMLRuxIconSubjectElement; new (): HTMLRuxIconSubjectElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSubscriptionsElement extends Components.RuxIconSubscriptions, HTMLStencilElement { } var HTMLRuxIconSubscriptionsElement: { prototype: HTMLRuxIconSubscriptionsElement; new (): HTMLRuxIconSubscriptionsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSubtitlesElement extends Components.RuxIconSubtitles, HTMLStencilElement { } var HTMLRuxIconSubtitlesElement: { prototype: HTMLRuxIconSubtitlesElement; new (): HTMLRuxIconSubtitlesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSubwayElement extends Components.RuxIconSubway, HTMLStencilElement { } var HTMLRuxIconSubwayElement: { prototype: HTMLRuxIconSubwayElement; new (): HTMLRuxIconSubwayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSupervisedUserCircleElement extends Components.RuxIconSupervisedUserCircle, HTMLStencilElement { } var HTMLRuxIconSupervisedUserCircleElement: { prototype: HTMLRuxIconSupervisedUserCircleElement; new (): HTMLRuxIconSupervisedUserCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSupervisorAccountElement extends Components.RuxIconSupervisorAccount, HTMLStencilElement { } var HTMLRuxIconSupervisorAccountElement: { prototype: HTMLRuxIconSupervisorAccountElement; new (): HTMLRuxIconSupervisorAccountElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSurroundSoundElement extends Components.RuxIconSurroundSound, HTMLStencilElement { } var HTMLRuxIconSurroundSoundElement: { prototype: HTMLRuxIconSurroundSoundElement; new (): HTMLRuxIconSurroundSoundElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSwapCallsElement extends Components.RuxIconSwapCalls, HTMLStencilElement { } var HTMLRuxIconSwapCallsElement: { prototype: HTMLRuxIconSwapCallsElement; new (): HTMLRuxIconSwapCallsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSwapHorizElement extends Components.RuxIconSwapHoriz, HTMLStencilElement { } var HTMLRuxIconSwapHorizElement: { prototype: HTMLRuxIconSwapHorizElement; new (): HTMLRuxIconSwapHorizElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSwapHorizontalCircleElement extends Components.RuxIconSwapHorizontalCircle, HTMLStencilElement { } var HTMLRuxIconSwapHorizontalCircleElement: { prototype: HTMLRuxIconSwapHorizontalCircleElement; new (): HTMLRuxIconSwapHorizontalCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSwapVertElement extends Components.RuxIconSwapVert, HTMLStencilElement { } var HTMLRuxIconSwapVertElement: { prototype: HTMLRuxIconSwapVertElement; new (): HTMLRuxIconSwapVertElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSwapVerticalCircleElement extends Components.RuxIconSwapVerticalCircle, HTMLStencilElement { } var HTMLRuxIconSwapVerticalCircleElement: { prototype: HTMLRuxIconSwapVerticalCircleElement; new (): HTMLRuxIconSwapVerticalCircleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSwitchCameraElement extends Components.RuxIconSwitchCamera, HTMLStencilElement { } var HTMLRuxIconSwitchCameraElement: { prototype: HTMLRuxIconSwitchCameraElement; new (): HTMLRuxIconSwitchCameraElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSwitchVideoElement extends Components.RuxIconSwitchVideo, HTMLStencilElement { } var HTMLRuxIconSwitchVideoElement: { prototype: HTMLRuxIconSwitchVideoElement; new (): HTMLRuxIconSwitchVideoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSyncElement extends Components.RuxIconSync, HTMLStencilElement { } var HTMLRuxIconSyncElement: { prototype: HTMLRuxIconSyncElement; new (): HTMLRuxIconSyncElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSyncDisabledElement extends Components.RuxIconSyncDisabled, HTMLStencilElement { } var HTMLRuxIconSyncDisabledElement: { prototype: HTMLRuxIconSyncDisabledElement; new (): HTMLRuxIconSyncDisabledElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSyncProblemElement extends Components.RuxIconSyncProblem, HTMLStencilElement { } var HTMLRuxIconSyncProblemElement: { prototype: HTMLRuxIconSyncProblemElement; new (): HTMLRuxIconSyncProblemElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconSystemUpdateElement extends Components.RuxIconSystemUpdate, HTMLStencilElement { } var HTMLRuxIconSystemUpdateElement: { prototype: HTMLRuxIconSystemUpdateElement; new (): HTMLRuxIconSystemUpdateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTabElement extends Components.RuxIconTab, HTMLStencilElement { } var HTMLRuxIconTabElement: { prototype: HTMLRuxIconTabElement; new (): HTMLRuxIconTabElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTabUnselectedElement extends Components.RuxIconTabUnselected, HTMLStencilElement { } var HTMLRuxIconTabUnselectedElement: { prototype: HTMLRuxIconTabUnselectedElement; new (): HTMLRuxIconTabUnselectedElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTableChartElement extends Components.RuxIconTableChart, HTMLStencilElement { } var HTMLRuxIconTableChartElement: { prototype: HTMLRuxIconTableChartElement; new (): HTMLRuxIconTableChartElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTabletElement extends Components.RuxIconTablet, HTMLStencilElement { } var HTMLRuxIconTabletElement: { prototype: HTMLRuxIconTabletElement; new (): HTMLRuxIconTabletElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTabletAndroidElement extends Components.RuxIconTabletAndroid, HTMLStencilElement { } var HTMLRuxIconTabletAndroidElement: { prototype: HTMLRuxIconTabletAndroidElement; new (): HTMLRuxIconTabletAndroidElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTabletMacElement extends Components.RuxIconTabletMac, HTMLStencilElement { } var HTMLRuxIconTabletMacElement: { prototype: HTMLRuxIconTabletMacElement; new (): HTMLRuxIconTabletMacElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTagFacesElement extends Components.RuxIconTagFaces, HTMLStencilElement { } var HTMLRuxIconTagFacesElement: { prototype: HTMLRuxIconTagFacesElement; new (): HTMLRuxIconTagFacesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTapAndPlayElement extends Components.RuxIconTapAndPlay, HTMLStencilElement { } var HTMLRuxIconTapAndPlayElement: { prototype: HTMLRuxIconTapAndPlayElement; new (): HTMLRuxIconTapAndPlayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTerrainElement extends Components.RuxIconTerrain, HTMLStencilElement { } var HTMLRuxIconTerrainElement: { prototype: HTMLRuxIconTerrainElement; new (): HTMLRuxIconTerrainElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTextFieldsElement extends Components.RuxIconTextFields, HTMLStencilElement { } var HTMLRuxIconTextFieldsElement: { prototype: HTMLRuxIconTextFieldsElement; new (): HTMLRuxIconTextFieldsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTextFormatElement extends Components.RuxIconTextFormat, HTMLStencilElement { } var HTMLRuxIconTextFormatElement: { prototype: HTMLRuxIconTextFormatElement; new (): HTMLRuxIconTextFormatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTextRotateUpElement extends Components.RuxIconTextRotateUp, HTMLStencilElement { } var HTMLRuxIconTextRotateUpElement: { prototype: HTMLRuxIconTextRotateUpElement; new (): HTMLRuxIconTextRotateUpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTextRotateVerticalElement extends Components.RuxIconTextRotateVertical, HTMLStencilElement { } var HTMLRuxIconTextRotateVerticalElement: { prototype: HTMLRuxIconTextRotateVerticalElement; new (): HTMLRuxIconTextRotateVerticalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTextRotationNoneElement extends Components.RuxIconTextRotationNone, HTMLStencilElement { } var HTMLRuxIconTextRotationNoneElement: { prototype: HTMLRuxIconTextRotationNoneElement; new (): HTMLRuxIconTextRotationNoneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTextsmsElement extends Components.RuxIconTextsms, HTMLStencilElement { } var HTMLRuxIconTextsmsElement: { prototype: HTMLRuxIconTextsmsElement; new (): HTMLRuxIconTextsmsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTextureElement extends Components.RuxIconTexture, HTMLStencilElement { } var HTMLRuxIconTextureElement: { prototype: HTMLRuxIconTextureElement; new (): HTMLRuxIconTextureElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTheatersElement extends Components.RuxIconTheaters, HTMLStencilElement { } var HTMLRuxIconTheatersElement: { prototype: HTMLRuxIconTheatersElement; new (): HTMLRuxIconTheatersElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconThermalElement extends Components.RuxIconThermal, HTMLStencilElement { } var HTMLRuxIconThermalElement: { prototype: HTMLRuxIconThermalElement; new (): HTMLRuxIconThermalElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconThumbDownElement extends Components.RuxIconThumbDown, HTMLStencilElement { } var HTMLRuxIconThumbDownElement: { prototype: HTMLRuxIconThumbDownElement; new (): HTMLRuxIconThumbDownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconThumbDownAltElement extends Components.RuxIconThumbDownAlt, HTMLStencilElement { } var HTMLRuxIconThumbDownAltElement: { prototype: HTMLRuxIconThumbDownAltElement; new (): HTMLRuxIconThumbDownAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconThumbUpElement extends Components.RuxIconThumbUp, HTMLStencilElement { } var HTMLRuxIconThumbUpElement: { prototype: HTMLRuxIconThumbUpElement; new (): HTMLRuxIconThumbUpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconThumbUpAltElement extends Components.RuxIconThumbUpAlt, HTMLStencilElement { } var HTMLRuxIconThumbUpAltElement: { prototype: HTMLRuxIconThumbUpAltElement; new (): HTMLRuxIconThumbUpAltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconThumbsUpDownElement extends Components.RuxIconThumbsUpDown, HTMLStencilElement { } var HTMLRuxIconThumbsUpDownElement: { prototype: HTMLRuxIconThumbsUpDownElement; new (): HTMLRuxIconThumbsUpDownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTimeToLeaveElement extends Components.RuxIconTimeToLeave, HTMLStencilElement { } var HTMLRuxIconTimeToLeaveElement: { prototype: HTMLRuxIconTimeToLeaveElement; new (): HTMLRuxIconTimeToLeaveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTimelapseElement extends Components.RuxIconTimelapse, HTMLStencilElement { } var HTMLRuxIconTimelapseElement: { prototype: HTMLRuxIconTimelapseElement; new (): HTMLRuxIconTimelapseElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTimelineElement extends Components.RuxIconTimeline, HTMLStencilElement { } var HTMLRuxIconTimelineElement: { prototype: HTMLRuxIconTimelineElement; new (): HTMLRuxIconTimelineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTimerElement extends Components.RuxIconTimer, HTMLStencilElement { } var HTMLRuxIconTimerElement: { prototype: HTMLRuxIconTimerElement; new (): HTMLRuxIconTimerElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTimer10Element extends Components.RuxIconTimer10, HTMLStencilElement { } var HTMLRuxIconTimer10Element: { prototype: HTMLRuxIconTimer10Element; new (): HTMLRuxIconTimer10Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTimer3Element extends Components.RuxIconTimer3, HTMLStencilElement { } var HTMLRuxIconTimer3Element: { prototype: HTMLRuxIconTimer3Element; new (): HTMLRuxIconTimer3Element; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTimerOffElement extends Components.RuxIconTimerOff, HTMLStencilElement { } var HTMLRuxIconTimerOffElement: { prototype: HTMLRuxIconTimerOffElement; new (): HTMLRuxIconTimerOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTitleElement extends Components.RuxIconTitle, HTMLStencilElement { } var HTMLRuxIconTitleElement: { prototype: HTMLRuxIconTitleElement; new (): HTMLRuxIconTitleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTocElement extends Components.RuxIconToc, HTMLStencilElement { } var HTMLRuxIconTocElement: { prototype: HTMLRuxIconTocElement; new (): HTMLRuxIconTocElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTodayElement extends Components.RuxIconToday, HTMLStencilElement { } var HTMLRuxIconTodayElement: { prototype: HTMLRuxIconTodayElement; new (): HTMLRuxIconTodayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconToggleOffElement extends Components.RuxIconToggleOff, HTMLStencilElement { } var HTMLRuxIconToggleOffElement: { prototype: HTMLRuxIconToggleOffElement; new (): HTMLRuxIconToggleOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconToggleOnElement extends Components.RuxIconToggleOn, HTMLStencilElement { } var HTMLRuxIconToggleOnElement: { prototype: HTMLRuxIconToggleOnElement; new (): HTMLRuxIconToggleOnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTollElement extends Components.RuxIconToll, HTMLStencilElement { } var HTMLRuxIconTollElement: { prototype: HTMLRuxIconTollElement; new (): HTMLRuxIconTollElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTonalityElement extends Components.RuxIconTonality, HTMLStencilElement { } var HTMLRuxIconTonalityElement: { prototype: HTMLRuxIconTonalityElement; new (): HTMLRuxIconTonalityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTouchAppElement extends Components.RuxIconTouchApp, HTMLStencilElement { } var HTMLRuxIconTouchAppElement: { prototype: HTMLRuxIconTouchAppElement; new (): HTMLRuxIconTouchAppElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconToysElement extends Components.RuxIconToys, HTMLStencilElement { } var HTMLRuxIconToysElement: { prototype: HTMLRuxIconToysElement; new (): HTMLRuxIconToysElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTrackChangesElement extends Components.RuxIconTrackChanges, HTMLStencilElement { } var HTMLRuxIconTrackChangesElement: { prototype: HTMLRuxIconTrackChangesElement; new (): HTMLRuxIconTrackChangesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTrafficElement extends Components.RuxIconTraffic, HTMLStencilElement { } var HTMLRuxIconTrafficElement: { prototype: HTMLRuxIconTrafficElement; new (): HTMLRuxIconTrafficElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTrainElement extends Components.RuxIconTrain, HTMLStencilElement { } var HTMLRuxIconTrainElement: { prototype: HTMLRuxIconTrainElement; new (): HTMLRuxIconTrainElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTramElement extends Components.RuxIconTram, HTMLStencilElement { } var HTMLRuxIconTramElement: { prototype: HTMLRuxIconTramElement; new (): HTMLRuxIconTramElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTransferWithinAStationElement extends Components.RuxIconTransferWithinAStation, HTMLStencilElement { } var HTMLRuxIconTransferWithinAStationElement: { prototype: HTMLRuxIconTransferWithinAStationElement; new (): HTMLRuxIconTransferWithinAStationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTransformElement extends Components.RuxIconTransform, HTMLStencilElement { } var HTMLRuxIconTransformElement: { prototype: HTMLRuxIconTransformElement; new (): HTMLRuxIconTransformElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTransitEnterexitElement extends Components.RuxIconTransitEnterexit, HTMLStencilElement { } var HTMLRuxIconTransitEnterexitElement: { prototype: HTMLRuxIconTransitEnterexitElement; new (): HTMLRuxIconTransitEnterexitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTranslateElement extends Components.RuxIconTranslate, HTMLStencilElement { } var HTMLRuxIconTranslateElement: { prototype: HTMLRuxIconTranslateElement; new (): HTMLRuxIconTranslateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTrendingDownElement extends Components.RuxIconTrendingDown, HTMLStencilElement { } var HTMLRuxIconTrendingDownElement: { prototype: HTMLRuxIconTrendingDownElement; new (): HTMLRuxIconTrendingDownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTrendingFlatElement extends Components.RuxIconTrendingFlat, HTMLStencilElement { } var HTMLRuxIconTrendingFlatElement: { prototype: HTMLRuxIconTrendingFlatElement; new (): HTMLRuxIconTrendingFlatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTrendingUpElement extends Components.RuxIconTrendingUp, HTMLStencilElement { } var HTMLRuxIconTrendingUpElement: { prototype: HTMLRuxIconTrendingUpElement; new (): HTMLRuxIconTrendingUpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTripOriginElement extends Components.RuxIconTripOrigin, HTMLStencilElement { } var HTMLRuxIconTripOriginElement: { prototype: HTMLRuxIconTripOriginElement; new (): HTMLRuxIconTripOriginElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTuneElement extends Components.RuxIconTune, HTMLStencilElement { } var HTMLRuxIconTuneElement: { prototype: HTMLRuxIconTuneElement; new (): HTMLRuxIconTuneElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTurnedInElement extends Components.RuxIconTurnedIn, HTMLStencilElement { } var HTMLRuxIconTurnedInElement: { prototype: HTMLRuxIconTurnedInElement; new (): HTMLRuxIconTurnedInElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTurnedInNotElement extends Components.RuxIconTurnedInNot, HTMLStencilElement { } var HTMLRuxIconTurnedInNotElement: { prototype: HTMLRuxIconTurnedInNotElement; new (): HTMLRuxIconTurnedInNotElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTvElement extends Components.RuxIconTv, HTMLStencilElement { } var HTMLRuxIconTvElement: { prototype: HTMLRuxIconTvElement; new (): HTMLRuxIconTvElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconTvOffElement extends Components.RuxIconTvOff, HTMLStencilElement { } var HTMLRuxIconTvOffElement: { prototype: HTMLRuxIconTvOffElement; new (): HTMLRuxIconTvOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconUnarchiveElement extends Components.RuxIconUnarchive, HTMLStencilElement { } var HTMLRuxIconUnarchiveElement: { prototype: HTMLRuxIconUnarchiveElement; new (): HTMLRuxIconUnarchiveElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconUndoElement extends Components.RuxIconUndo, HTMLStencilElement { } var HTMLRuxIconUndoElement: { prototype: HTMLRuxIconUndoElement; new (): HTMLRuxIconUndoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconUnfoldLessElement extends Components.RuxIconUnfoldLess, HTMLStencilElement { } var HTMLRuxIconUnfoldLessElement: { prototype: HTMLRuxIconUnfoldLessElement; new (): HTMLRuxIconUnfoldLessElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconUnfoldMoreElement extends Components.RuxIconUnfoldMore, HTMLStencilElement { } var HTMLRuxIconUnfoldMoreElement: { prototype: HTMLRuxIconUnfoldMoreElement; new (): HTMLRuxIconUnfoldMoreElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconUnsubscribeElement extends Components.RuxIconUnsubscribe, HTMLStencilElement { } var HTMLRuxIconUnsubscribeElement: { prototype: HTMLRuxIconUnsubscribeElement; new (): HTMLRuxIconUnsubscribeElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconUpdateElement extends Components.RuxIconUpdate, HTMLStencilElement { } var HTMLRuxIconUpdateElement: { prototype: HTMLRuxIconUpdateElement; new (): HTMLRuxIconUpdateElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconUsbElement extends Components.RuxIconUsb, HTMLStencilElement { } var HTMLRuxIconUsbElement: { prototype: HTMLRuxIconUsbElement; new (): HTMLRuxIconUsbElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVerifiedUserElement extends Components.RuxIconVerifiedUser, HTMLStencilElement { } var HTMLRuxIconVerifiedUserElement: { prototype: HTMLRuxIconVerifiedUserElement; new (): HTMLRuxIconVerifiedUserElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVerticalAlignBottomElement extends Components.RuxIconVerticalAlignBottom, HTMLStencilElement { } var HTMLRuxIconVerticalAlignBottomElement: { prototype: HTMLRuxIconVerticalAlignBottomElement; new (): HTMLRuxIconVerticalAlignBottomElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVerticalAlignCenterElement extends Components.RuxIconVerticalAlignCenter, HTMLStencilElement { } var HTMLRuxIconVerticalAlignCenterElement: { prototype: HTMLRuxIconVerticalAlignCenterElement; new (): HTMLRuxIconVerticalAlignCenterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVerticalAlignTopElement extends Components.RuxIconVerticalAlignTop, HTMLStencilElement { } var HTMLRuxIconVerticalAlignTopElement: { prototype: HTMLRuxIconVerticalAlignTopElement; new (): HTMLRuxIconVerticalAlignTopElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVerticalSplitElement extends Components.RuxIconVerticalSplit, HTMLStencilElement { } var HTMLRuxIconVerticalSplitElement: { prototype: HTMLRuxIconVerticalSplitElement; new (): HTMLRuxIconVerticalSplitElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVibrationElement extends Components.RuxIconVibration, HTMLStencilElement { } var HTMLRuxIconVibrationElement: { prototype: HTMLRuxIconVibrationElement; new (): HTMLRuxIconVibrationElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVideoCallElement extends Components.RuxIconVideoCall, HTMLStencilElement { } var HTMLRuxIconVideoCallElement: { prototype: HTMLRuxIconVideoCallElement; new (): HTMLRuxIconVideoCallElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVideoLabelElement extends Components.RuxIconVideoLabel, HTMLStencilElement { } var HTMLRuxIconVideoLabelElement: { prototype: HTMLRuxIconVideoLabelElement; new (): HTMLRuxIconVideoLabelElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVideoLibraryElement extends Components.RuxIconVideoLibrary, HTMLStencilElement { } var HTMLRuxIconVideoLibraryElement: { prototype: HTMLRuxIconVideoLibraryElement; new (): HTMLRuxIconVideoLibraryElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVideocamElement extends Components.RuxIconVideocam, HTMLStencilElement { } var HTMLRuxIconVideocamElement: { prototype: HTMLRuxIconVideocamElement; new (): HTMLRuxIconVideocamElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVideocamOffElement extends Components.RuxIconVideocamOff, HTMLStencilElement { } var HTMLRuxIconVideocamOffElement: { prototype: HTMLRuxIconVideocamOffElement; new (): HTMLRuxIconVideocamOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVideogameAssetElement extends Components.RuxIconVideogameAsset, HTMLStencilElement { } var HTMLRuxIconVideogameAssetElement: { prototype: HTMLRuxIconVideogameAssetElement; new (): HTMLRuxIconVideogameAssetElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewAgendaElement extends Components.RuxIconViewAgenda, HTMLStencilElement { } var HTMLRuxIconViewAgendaElement: { prototype: HTMLRuxIconViewAgendaElement; new (): HTMLRuxIconViewAgendaElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewArrayElement extends Components.RuxIconViewArray, HTMLStencilElement { } var HTMLRuxIconViewArrayElement: { prototype: HTMLRuxIconViewArrayElement; new (): HTMLRuxIconViewArrayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewCarouselElement extends Components.RuxIconViewCarousel, HTMLStencilElement { } var HTMLRuxIconViewCarouselElement: { prototype: HTMLRuxIconViewCarouselElement; new (): HTMLRuxIconViewCarouselElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewColumnElement extends Components.RuxIconViewColumn, HTMLStencilElement { } var HTMLRuxIconViewColumnElement: { prototype: HTMLRuxIconViewColumnElement; new (): HTMLRuxIconViewColumnElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewComfyElement extends Components.RuxIconViewComfy, HTMLStencilElement { } var HTMLRuxIconViewComfyElement: { prototype: HTMLRuxIconViewComfyElement; new (): HTMLRuxIconViewComfyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewCompactElement extends Components.RuxIconViewCompact, HTMLStencilElement { } var HTMLRuxIconViewCompactElement: { prototype: HTMLRuxIconViewCompactElement; new (): HTMLRuxIconViewCompactElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewDayElement extends Components.RuxIconViewDay, HTMLStencilElement { } var HTMLRuxIconViewDayElement: { prototype: HTMLRuxIconViewDayElement; new (): HTMLRuxIconViewDayElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewHeadlineElement extends Components.RuxIconViewHeadline, HTMLStencilElement { } var HTMLRuxIconViewHeadlineElement: { prototype: HTMLRuxIconViewHeadlineElement; new (): HTMLRuxIconViewHeadlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewListElement extends Components.RuxIconViewList, HTMLStencilElement { } var HTMLRuxIconViewListElement: { prototype: HTMLRuxIconViewListElement; new (): HTMLRuxIconViewListElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewModuleElement extends Components.RuxIconViewModule, HTMLStencilElement { } var HTMLRuxIconViewModuleElement: { prototype: HTMLRuxIconViewModuleElement; new (): HTMLRuxIconViewModuleElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewQuiltElement extends Components.RuxIconViewQuilt, HTMLStencilElement { } var HTMLRuxIconViewQuiltElement: { prototype: HTMLRuxIconViewQuiltElement; new (): HTMLRuxIconViewQuiltElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewStreamElement extends Components.RuxIconViewStream, HTMLStencilElement { } var HTMLRuxIconViewStreamElement: { prototype: HTMLRuxIconViewStreamElement; new (): HTMLRuxIconViewStreamElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconViewWeekElement extends Components.RuxIconViewWeek, HTMLStencilElement { } var HTMLRuxIconViewWeekElement: { prototype: HTMLRuxIconViewWeekElement; new (): HTMLRuxIconViewWeekElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVignetteElement extends Components.RuxIconVignette, HTMLStencilElement { } var HTMLRuxIconVignetteElement: { prototype: HTMLRuxIconVignetteElement; new (): HTMLRuxIconVignetteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVisibilityElement extends Components.RuxIconVisibility, HTMLStencilElement { } var HTMLRuxIconVisibilityElement: { prototype: HTMLRuxIconVisibilityElement; new (): HTMLRuxIconVisibilityElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVisibilityOffElement extends Components.RuxIconVisibilityOff, HTMLStencilElement { } var HTMLRuxIconVisibilityOffElement: { prototype: HTMLRuxIconVisibilityOffElement; new (): HTMLRuxIconVisibilityOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVoiceChatElement extends Components.RuxIconVoiceChat, HTMLStencilElement { } var HTMLRuxIconVoiceChatElement: { prototype: HTMLRuxIconVoiceChatElement; new (): HTMLRuxIconVoiceChatElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVoiceOverOffElement extends Components.RuxIconVoiceOverOff, HTMLStencilElement { } var HTMLRuxIconVoiceOverOffElement: { prototype: HTMLRuxIconVoiceOverOffElement; new (): HTMLRuxIconVoiceOverOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVoicemailElement extends Components.RuxIconVoicemail, HTMLStencilElement { } var HTMLRuxIconVoicemailElement: { prototype: HTMLRuxIconVoicemailElement; new (): HTMLRuxIconVoicemailElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVolumeDownElement extends Components.RuxIconVolumeDown, HTMLStencilElement { } var HTMLRuxIconVolumeDownElement: { prototype: HTMLRuxIconVolumeDownElement; new (): HTMLRuxIconVolumeDownElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVolumeMuteElement extends Components.RuxIconVolumeMute, HTMLStencilElement { } var HTMLRuxIconVolumeMuteElement: { prototype: HTMLRuxIconVolumeMuteElement; new (): HTMLRuxIconVolumeMuteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVolumeOffElement extends Components.RuxIconVolumeOff, HTMLStencilElement { } var HTMLRuxIconVolumeOffElement: { prototype: HTMLRuxIconVolumeOffElement; new (): HTMLRuxIconVolumeOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVolumeUpElement extends Components.RuxIconVolumeUp, HTMLStencilElement { } var HTMLRuxIconVolumeUpElement: { prototype: HTMLRuxIconVolumeUpElement; new (): HTMLRuxIconVolumeUpElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVpnKeyElement extends Components.RuxIconVpnKey, HTMLStencilElement { } var HTMLRuxIconVpnKeyElement: { prototype: HTMLRuxIconVpnKeyElement; new (): HTMLRuxIconVpnKeyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconVpnLockElement extends Components.RuxIconVpnLock, HTMLStencilElement { } var HTMLRuxIconVpnLockElement: { prototype: HTMLRuxIconVpnLockElement; new (): HTMLRuxIconVpnLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWallpaperElement extends Components.RuxIconWallpaper, HTMLStencilElement { } var HTMLRuxIconWallpaperElement: { prototype: HTMLRuxIconWallpaperElement; new (): HTMLRuxIconWallpaperElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWarningElement extends Components.RuxIconWarning, HTMLStencilElement { } var HTMLRuxIconWarningElement: { prototype: HTMLRuxIconWarningElement; new (): HTMLRuxIconWarningElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWatchElement extends Components.RuxIconWatch, HTMLStencilElement { } var HTMLRuxIconWatchElement: { prototype: HTMLRuxIconWatchElement; new (): HTMLRuxIconWatchElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWatchLaterElement extends Components.RuxIconWatchLater, HTMLStencilElement { } var HTMLRuxIconWatchLaterElement: { prototype: HTMLRuxIconWatchLaterElement; new (): HTMLRuxIconWatchLaterElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWavesElement extends Components.RuxIconWaves, HTMLStencilElement { } var HTMLRuxIconWavesElement: { prototype: HTMLRuxIconWavesElement; new (): HTMLRuxIconWavesElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWbAutoElement extends Components.RuxIconWbAuto, HTMLStencilElement { } var HTMLRuxIconWbAutoElement: { prototype: HTMLRuxIconWbAutoElement; new (): HTMLRuxIconWbAutoElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWbCloudyElement extends Components.RuxIconWbCloudy, HTMLStencilElement { } var HTMLRuxIconWbCloudyElement: { prototype: HTMLRuxIconWbCloudyElement; new (): HTMLRuxIconWbCloudyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWbIncandescentElement extends Components.RuxIconWbIncandescent, HTMLStencilElement { } var HTMLRuxIconWbIncandescentElement: { prototype: HTMLRuxIconWbIncandescentElement; new (): HTMLRuxIconWbIncandescentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWbIridescentElement extends Components.RuxIconWbIridescent, HTMLStencilElement { } var HTMLRuxIconWbIridescentElement: { prototype: HTMLRuxIconWbIridescentElement; new (): HTMLRuxIconWbIridescentElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWbSunnyElement extends Components.RuxIconWbSunny, HTMLStencilElement { } var HTMLRuxIconWbSunnyElement: { prototype: HTMLRuxIconWbSunnyElement; new (): HTMLRuxIconWbSunnyElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWcElement extends Components.RuxIconWc, HTMLStencilElement { } var HTMLRuxIconWcElement: { prototype: HTMLRuxIconWcElement; new (): HTMLRuxIconWcElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWebElement extends Components.RuxIconWeb, HTMLStencilElement { } var HTMLRuxIconWebElement: { prototype: HTMLRuxIconWebElement; new (): HTMLRuxIconWebElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWebAssetElement extends Components.RuxIconWebAsset, HTMLStencilElement { } var HTMLRuxIconWebAssetElement: { prototype: HTMLRuxIconWebAssetElement; new (): HTMLRuxIconWebAssetElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWeekendElement extends Components.RuxIconWeekend, HTMLStencilElement { } var HTMLRuxIconWeekendElement: { prototype: HTMLRuxIconWeekendElement; new (): HTMLRuxIconWeekendElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWhatshotElement extends Components.RuxIconWhatshot, HTMLStencilElement { } var HTMLRuxIconWhatshotElement: { prototype: HTMLRuxIconWhatshotElement; new (): HTMLRuxIconWhatshotElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWhereToVoteElement extends Components.RuxIconWhereToVote, HTMLStencilElement { } var HTMLRuxIconWhereToVoteElement: { prototype: HTMLRuxIconWhereToVoteElement; new (): HTMLRuxIconWhereToVoteElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWidgetsElement extends Components.RuxIconWidgets, HTMLStencilElement { } var HTMLRuxIconWidgetsElement: { prototype: HTMLRuxIconWidgetsElement; new (): HTMLRuxIconWidgetsElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWifiElement extends Components.RuxIconWifi, HTMLStencilElement { } var HTMLRuxIconWifiElement: { prototype: HTMLRuxIconWifiElement; new (): HTMLRuxIconWifiElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWifiLockElement extends Components.RuxIconWifiLock, HTMLStencilElement { } var HTMLRuxIconWifiLockElement: { prototype: HTMLRuxIconWifiLockElement; new (): HTMLRuxIconWifiLockElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWifiOffElement extends Components.RuxIconWifiOff, HTMLStencilElement { } var HTMLRuxIconWifiOffElement: { prototype: HTMLRuxIconWifiOffElement; new (): HTMLRuxIconWifiOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWifiTetheringElement extends Components.RuxIconWifiTethering, HTMLStencilElement { } var HTMLRuxIconWifiTetheringElement: { prototype: HTMLRuxIconWifiTetheringElement; new (): HTMLRuxIconWifiTetheringElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWorkElement extends Components.RuxIconWork, HTMLStencilElement { } var HTMLRuxIconWorkElement: { prototype: HTMLRuxIconWorkElement; new (): HTMLRuxIconWorkElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWorkOffElement extends Components.RuxIconWorkOff, HTMLStencilElement { } var HTMLRuxIconWorkOffElement: { prototype: HTMLRuxIconWorkOffElement; new (): HTMLRuxIconWorkOffElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWorkOutlineElement extends Components.RuxIconWorkOutline, HTMLStencilElement { } var HTMLRuxIconWorkOutlineElement: { prototype: HTMLRuxIconWorkOutlineElement; new (): HTMLRuxIconWorkOutlineElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconWrapTextElement extends Components.RuxIconWrapText, HTMLStencilElement { } var HTMLRuxIconWrapTextElement: { prototype: HTMLRuxIconWrapTextElement; new (): HTMLRuxIconWrapTextElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconYoutubeSearchedForElement extends Components.RuxIconYoutubeSearchedFor, HTMLStencilElement { } var HTMLRuxIconYoutubeSearchedForElement: { prototype: HTMLRuxIconYoutubeSearchedForElement; new (): HTMLRuxIconYoutubeSearchedForElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconZoomInElement extends Components.RuxIconZoomIn, HTMLStencilElement { } var HTMLRuxIconZoomInElement: { prototype: HTMLRuxIconZoomInElement; new (): HTMLRuxIconZoomInElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconZoomInMapElement extends Components.RuxIconZoomInMap, HTMLStencilElement { } var HTMLRuxIconZoomInMapElement: { prototype: HTMLRuxIconZoomInMapElement; new (): HTMLRuxIconZoomInMapElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconZoomOutElement extends Components.RuxIconZoomOut, HTMLStencilElement { } var HTMLRuxIconZoomOutElement: { prototype: HTMLRuxIconZoomOutElement; new (): HTMLRuxIconZoomOutElement; }; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface HTMLRuxIconZoomOutMapElement extends Components.RuxIconZoomOutMap, HTMLStencilElement { } var HTMLRuxIconZoomOutMapElement: { prototype: HTMLRuxIconZoomOutMapElement; new (): HTMLRuxIconZoomOutMapElement; }; interface HTMLRuxIndeterminateProgressElement extends Components.RuxIndeterminateProgress, HTMLStencilElement { } var HTMLRuxIndeterminateProgressElement: { prototype: HTMLRuxIndeterminateProgressElement; new (): HTMLRuxIndeterminateProgressElement; }; interface HTMLRuxInputElementEventMap { "ruxchange": any; "ruxinput": any; "ruxblur": any; "ruxfocus": any; } interface HTMLRuxInputElement extends Components.RuxInput, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxInputElement, ev: RuxInputCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxInputElement, ev: RuxInputCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxInputElement: { prototype: HTMLRuxInputElement; new (): HTMLRuxInputElement; }; /** * A Log is a tabular representation of application events and may include username, priority, equipment type, signal type, etc. As part of the [Notification System](https://www.astrouxds.com/design-guidelines/notifications), Logs provide sorting and filtering function for examining events. */ interface HTMLRuxLogElement extends Components.RuxLog, HTMLStencilElement { } var HTMLRuxLogElement: { prototype: HTMLRuxLogElement; new (): HTMLRuxLogElement; }; interface HTMLRuxMenuElementEventMap { "ruxmenuselected": any; } interface HTMLRuxMenuElement extends Components.RuxMenu, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxMenuElement, ev: RuxMenuCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxMenuElement, ev: RuxMenuCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxMenuElement: { prototype: HTMLRuxMenuElement; new (): HTMLRuxMenuElement; }; interface HTMLRuxMenuItemElement extends Components.RuxMenuItem, HTMLStencilElement { } var HTMLRuxMenuItemElement: { prototype: HTMLRuxMenuItemElement; new (): HTMLRuxMenuItemElement; }; interface HTMLRuxMenuItemDividerElement extends Components.RuxMenuItemDivider, HTMLStencilElement { } var HTMLRuxMenuItemDividerElement: { prototype: HTMLRuxMenuItemDividerElement; new (): HTMLRuxMenuItemDividerElement; }; interface HTMLRuxMonitoringIconElement extends Components.RuxMonitoringIcon, HTMLStencilElement { } var HTMLRuxMonitoringIconElement: { prototype: HTMLRuxMonitoringIconElement; new (): HTMLRuxMonitoringIconElement; }; interface HTMLRuxMonitoringProgressIconElement extends Components.RuxMonitoringProgressIcon, HTMLStencilElement { } var HTMLRuxMonitoringProgressIconElement: { prototype: HTMLRuxMonitoringProgressIconElement; new (): HTMLRuxMonitoringProgressIconElement; }; interface HTMLRuxNotificationElementEventMap { "ruxclosed": boolean; } interface HTMLRuxNotificationElement extends Components.RuxNotification, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxNotificationElement, ev: RuxNotificationCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxNotificationElement, ev: RuxNotificationCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxNotificationElement: { prototype: HTMLRuxNotificationElement; new (): HTMLRuxNotificationElement; }; interface HTMLRuxOptionElementEventMap { "rux-option-changed": void; } /** * This component should be used exclusively with RuxSelect. * It's main function is to broadcast to RuxSelect when the value property changes. * RuxSelect can only listen for slot change, which won't fire in the scenario where there * might be 2 options and only their values change. Because the nodes themselves aren't added or removed, * onSlotchange doesn't fire. */ interface HTMLRuxOptionElement extends Components.RuxOption, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxOptionElement, ev: RuxOptionCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxOptionElement, ev: RuxOptionCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxOptionElement: { prototype: HTMLRuxOptionElement; new (): HTMLRuxOptionElement; }; interface HTMLRuxOptionGroupElementEventMap { "rux-option-group-changed": void; } interface HTMLRuxOptionGroupElement extends Components.RuxOptionGroup, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxOptionGroupElement, ev: RuxOptionGroupCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxOptionGroupElement, ev: RuxOptionGroupCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxOptionGroupElement: { prototype: HTMLRuxOptionGroupElement; new (): HTMLRuxOptionGroupElement; }; interface HTMLRuxPopUpElementEventMap { "ruxpopupopened": any; "ruxpopupclosed": any; } interface HTMLRuxPopUpElement extends Components.RuxPopUp, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxPopUpElement, ev: RuxPopUpCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxPopUpElement, ev: RuxPopUpCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxPopUpElement: { prototype: HTMLRuxPopUpElement; new (): HTMLRuxPopUpElement; }; interface HTMLRuxProgressElement extends Components.RuxProgress, HTMLStencilElement { } var HTMLRuxProgressElement: { prototype: HTMLRuxProgressElement; new (): HTMLRuxProgressElement; }; interface HTMLRuxPushButtonElementEventMap { "ruxchange": any; "ruxblur": any; } interface HTMLRuxPushButtonElement extends Components.RuxPushButton, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxPushButtonElement, ev: RuxPushButtonCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxPushButtonElement, ev: RuxPushButtonCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxPushButtonElement: { prototype: HTMLRuxPushButtonElement; new (): HTMLRuxPushButtonElement; }; interface HTMLRuxRadioElementEventMap { "ruxblur": any; } interface HTMLRuxRadioElement extends Components.RuxRadio, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxRadioElement, ev: RuxRadioCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxRadioElement, ev: RuxRadioCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxRadioElement: { prototype: HTMLRuxRadioElement; new (): HTMLRuxRadioElement; }; interface HTMLRuxRadioGroupElementEventMap { "ruxchange": any; } interface HTMLRuxRadioGroupElement extends Components.RuxRadioGroup, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxRadioGroupElement, ev: RuxRadioGroupCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxRadioGroupElement, ev: RuxRadioGroupCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxRadioGroupElement: { prototype: HTMLRuxRadioGroupElement; new (): HTMLRuxRadioGroupElement; }; interface HTMLRuxRulerElement extends Components.RuxRuler, HTMLStencilElement { } var HTMLRuxRulerElement: { prototype: HTMLRuxRulerElement; new (): HTMLRuxRulerElement; }; interface HTMLRuxSegmentedButtonElementEventMap { "ruxchange": any; } interface HTMLRuxSegmentedButtonElement extends Components.RuxSegmentedButton, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxSegmentedButtonElement, ev: RuxSegmentedButtonCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxSegmentedButtonElement, ev: RuxSegmentedButtonCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxSegmentedButtonElement: { prototype: HTMLRuxSegmentedButtonElement; new (): HTMLRuxSegmentedButtonElement; }; interface HTMLRuxSelectElementEventMap { "ruxchange": void; "ruxblur": any; } interface HTMLRuxSelectElement extends Components.RuxSelect, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxSelectElement, ev: RuxSelectCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxSelectElement, ev: RuxSelectCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxSelectElement: { prototype: HTMLRuxSelectElement; new (): HTMLRuxSelectElement; }; interface HTMLRuxSliderElementEventMap { "ruxinput": any; "ruxblur": any; "ruxchange": any; } interface HTMLRuxSliderElement extends Components.RuxSlider, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxSliderElement, ev: RuxSliderCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxSliderElement, ev: RuxSliderCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxSliderElement: { prototype: HTMLRuxSliderElement; new (): HTMLRuxSliderElement; }; interface HTMLRuxStatusElement extends Components.RuxStatus, HTMLStencilElement { } var HTMLRuxStatusElement: { prototype: HTMLRuxStatusElement; new (): HTMLRuxStatusElement; }; interface HTMLRuxSwitchElementEventMap { "ruxchange": any; "ruxinput": any; "ruxblur": any; } interface HTMLRuxSwitchElement extends Components.RuxSwitch, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxSwitchElement, ev: RuxSwitchCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxSwitchElement, ev: RuxSwitchCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxSwitchElement: { prototype: HTMLRuxSwitchElement; new (): HTMLRuxSwitchElement; }; interface HTMLRuxTabElementEventMap { "ruxtabselected": any; } interface HTMLRuxTabElement extends Components.RuxTab, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxTabElement, ev: RuxTabCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxTabElement, ev: RuxTabCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxTabElement: { prototype: HTMLRuxTabElement; new (): HTMLRuxTabElement; }; interface HTMLRuxTabPanelElement extends Components.RuxTabPanel, HTMLStencilElement { } var HTMLRuxTabPanelElement: { prototype: HTMLRuxTabPanelElement; new (): HTMLRuxTabPanelElement; }; interface HTMLRuxTabPanelsElementEventMap { "ruxregisterpanels": HTMLRuxTabPanelsElement[]; } interface HTMLRuxTabPanelsElement extends Components.RuxTabPanels, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxTabPanelsElement, ev: RuxTabPanelsCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxTabPanelsElement, ev: RuxTabPanelsCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxTabPanelsElement: { prototype: HTMLRuxTabPanelsElement; new (): HTMLRuxTabPanelsElement; }; interface HTMLRuxTableElement extends Components.RuxTable, HTMLStencilElement { } var HTMLRuxTableElement: { prototype: HTMLRuxTableElement; new (): HTMLRuxTableElement; }; interface HTMLRuxTableBodyElement extends Components.RuxTableBody, HTMLStencilElement { } var HTMLRuxTableBodyElement: { prototype: HTMLRuxTableBodyElement; new (): HTMLRuxTableBodyElement; }; interface HTMLRuxTableCellElement extends Components.RuxTableCell, HTMLStencilElement { } var HTMLRuxTableCellElement: { prototype: HTMLRuxTableCellElement; new (): HTMLRuxTableCellElement; }; interface HTMLRuxTableHeaderElement extends Components.RuxTableHeader, HTMLStencilElement { } var HTMLRuxTableHeaderElement: { prototype: HTMLRuxTableHeaderElement; new (): HTMLRuxTableHeaderElement; }; interface HTMLRuxTableHeaderCellElement extends Components.RuxTableHeaderCell, HTMLStencilElement { } var HTMLRuxTableHeaderCellElement: { prototype: HTMLRuxTableHeaderCellElement; new (): HTMLRuxTableHeaderCellElement; }; interface HTMLRuxTableHeaderRowElement extends Components.RuxTableHeaderRow, HTMLStencilElement { } var HTMLRuxTableHeaderRowElement: { prototype: HTMLRuxTableHeaderRowElement; new (): HTMLRuxTableHeaderRowElement; }; interface HTMLRuxTableRowElement extends Components.RuxTableRow, HTMLStencilElement { } var HTMLRuxTableRowElement: { prototype: HTMLRuxTableRowElement; new (): HTMLRuxTableRowElement; }; interface HTMLRuxTabsElementEventMap { "ruxselected": any; } interface HTMLRuxTabsElement extends Components.RuxTabs, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxTabsElement, ev: RuxTabsCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxTabsElement, ev: RuxTabsCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxTabsElement: { prototype: HTMLRuxTabsElement; new (): HTMLRuxTabsElement; }; interface HTMLRuxTagElement extends Components.RuxTag, HTMLStencilElement { } var HTMLRuxTagElement: { prototype: HTMLRuxTagElement; new (): HTMLRuxTagElement; }; interface HTMLRuxTextareaElementEventMap { "ruxchange": any; "ruxinput": any; "ruxblur": any; } interface HTMLRuxTextareaElement extends Components.RuxTextarea, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxTextareaElement, ev: RuxTextareaCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxTextareaElement, ev: RuxTextareaCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxTextareaElement: { prototype: HTMLRuxTextareaElement; new (): HTMLRuxTextareaElement; }; interface HTMLRuxTimeRegionElementEventMap { "ruxtimeregionchange": any; } interface HTMLRuxTimeRegionElement extends Components.RuxTimeRegion, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxTimeRegionElement, ev: RuxTimeRegionCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxTimeRegionElement, ev: RuxTimeRegionCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxTimeRegionElement: { prototype: HTMLRuxTimeRegionElement; new (): HTMLRuxTimeRegionElement; }; interface HTMLRuxTimelineElement extends Components.RuxTimeline, HTMLStencilElement { } var HTMLRuxTimelineElement: { prototype: HTMLRuxTimelineElement; new (): HTMLRuxTimelineElement; }; interface HTMLRuxToastElementEventMap { "ruxtoastopen": boolean; "ruxtoastclosed": boolean; } interface HTMLRuxToastElement extends Components.RuxToast, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxToastElement, ev: RuxToastCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxToastElement, ev: RuxToastCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxToastElement: { prototype: HTMLRuxToastElement; new (): HTMLRuxToastElement; }; interface HTMLRuxToastStackElement extends Components.RuxToastStack, HTMLStencilElement { } var HTMLRuxToastStackElement: { prototype: HTMLRuxToastStackElement; new (): HTMLRuxToastStackElement; }; interface HTMLRuxTooltipElementEventMap { "ruxtooltipopened": any; "ruxtooltipclosed": any; } interface HTMLRuxTooltipElement extends Components.RuxTooltip, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxTooltipElement, ev: RuxTooltipCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxTooltipElement, ev: RuxTooltipCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxTooltipElement: { prototype: HTMLRuxTooltipElement; new (): HTMLRuxTooltipElement; }; interface HTMLRuxTrackElement extends Components.RuxTrack, HTMLStencilElement { } var HTMLRuxTrackElement: { prototype: HTMLRuxTrackElement; new (): HTMLRuxTrackElement; }; interface HTMLRuxTreeElement extends Components.RuxTree, HTMLStencilElement { } var HTMLRuxTreeElement: { prototype: HTMLRuxTreeElement; new (): HTMLRuxTreeElement; }; interface HTMLRuxTreeNodeElementEventMap { "ruxtreenodeselected": string; "ruxtreenodeexpanded": string; "ruxtreenodecollapsed": string; } interface HTMLRuxTreeNodeElement extends Components.RuxTreeNode, HTMLStencilElement { addEventListener(type: K, listener: (this: HTMLRuxTreeNodeElement, ev: RuxTreeNodeCustomEvent) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLRuxTreeNodeElement, ev: RuxTreeNodeCustomEvent) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void; } var HTMLRuxTreeNodeElement: { prototype: HTMLRuxTreeNodeElement; new (): HTMLRuxTreeNodeElement; }; interface HTMLElementTagNameMap { "rux-accordion": HTMLRuxAccordionElement; "rux-accordion-item": HTMLRuxAccordionItemElement; "rux-breadcrumb": HTMLRuxBreadcrumbElement; "rux-breadcrumb-item": HTMLRuxBreadcrumbItemElement; "rux-button": HTMLRuxButtonElement; "rux-button-group": HTMLRuxButtonGroupElement; "rux-card": HTMLRuxCardElement; "rux-checkbox": HTMLRuxCheckboxElement; "rux-checkbox-group": HTMLRuxCheckboxGroupElement; "rux-classification-marking": HTMLRuxClassificationMarkingElement; "rux-clock": HTMLRuxClockElement; "rux-container": HTMLRuxContainerElement; "rux-datetime": HTMLRuxDatetimeElement; "rux-dialog": HTMLRuxDialogElement; "rux-global-status-bar": HTMLRuxGlobalStatusBarElement; "rux-icon": HTMLRuxIconElement; "rux-icon-360": HTMLRuxIcon360Element; "rux-icon-3d-rotation": HTMLRuxIcon3dRotationElement; "rux-icon-4k": HTMLRuxIcon4kElement; "rux-icon-ac-unit": HTMLRuxIconAcUnitElement; "rux-icon-access-alarms": HTMLRuxIconAccessAlarmsElement; "rux-icon-access-time": HTMLRuxIconAccessTimeElement; "rux-icon-accessibility": HTMLRuxIconAccessibilityElement; "rux-icon-accessibility-new": HTMLRuxIconAccessibilityNewElement; "rux-icon-accessible": HTMLRuxIconAccessibleElement; "rux-icon-accessible-forward": HTMLRuxIconAccessibleForwardElement; "rux-icon-account-balance": HTMLRuxIconAccountBalanceElement; "rux-icon-account-balance-wallet": HTMLRuxIconAccountBalanceWalletElement; "rux-icon-account-box": HTMLRuxIconAccountBoxElement; "rux-icon-account-circle": HTMLRuxIconAccountCircleElement; "rux-icon-adb": HTMLRuxIconAdbElement; "rux-icon-add": HTMLRuxIconAddElement; "rux-icon-add-a-photo": HTMLRuxIconAddAPhotoElement; "rux-icon-add-alarm": HTMLRuxIconAddAlarmElement; "rux-icon-add-alert": HTMLRuxIconAddAlertElement; "rux-icon-add-box": HTMLRuxIconAddBoxElement; "rux-icon-add-circle": HTMLRuxIconAddCircleElement; "rux-icon-add-circle-outline": HTMLRuxIconAddCircleOutlineElement; "rux-icon-add-comment": HTMLRuxIconAddCommentElement; "rux-icon-add-location": HTMLRuxIconAddLocationElement; "rux-icon-add-photo-alternate": HTMLRuxIconAddPhotoAlternateElement; "rux-icon-add-shopping-cart": HTMLRuxIconAddShoppingCartElement; "rux-icon-add-to-home-screen": HTMLRuxIconAddToHomeScreenElement; "rux-icon-add-to-photos": HTMLRuxIconAddToPhotosElement; "rux-icon-add-to-queue": HTMLRuxIconAddToQueueElement; "rux-icon-adjust": HTMLRuxIconAdjustElement; "rux-icon-airline-seat-flat": HTMLRuxIconAirlineSeatFlatElement; "rux-icon-airline-seat-flat-angled": HTMLRuxIconAirlineSeatFlatAngledElement; "rux-icon-airline-seat-individual-suite": HTMLRuxIconAirlineSeatIndividualSuiteElement; "rux-icon-airline-seat-legroom-extra": HTMLRuxIconAirlineSeatLegroomExtraElement; "rux-icon-airline-seat-legroom-normal": HTMLRuxIconAirlineSeatLegroomNormalElement; "rux-icon-airline-seat-legroom-reduced": HTMLRuxIconAirlineSeatLegroomReducedElement; "rux-icon-airline-seat-recline-extra": HTMLRuxIconAirlineSeatReclineExtraElement; "rux-icon-airline-seat-recline-normal": HTMLRuxIconAirlineSeatReclineNormalElement; "rux-icon-airplanemode-active": HTMLRuxIconAirplanemodeActiveElement; "rux-icon-airplanemode-inactive": HTMLRuxIconAirplanemodeInactiveElement; "rux-icon-airplay": HTMLRuxIconAirplayElement; "rux-icon-airport-shuttle": HTMLRuxIconAirportShuttleElement; "rux-icon-alarm": HTMLRuxIconAlarmElement; "rux-icon-alarm-add": HTMLRuxIconAlarmAddElement; "rux-icon-alarm-off": HTMLRuxIconAlarmOffElement; "rux-icon-alarm-on": HTMLRuxIconAlarmOnElement; "rux-icon-album": HTMLRuxIconAlbumElement; "rux-icon-all-inbox": HTMLRuxIconAllInboxElement; "rux-icon-all-inclusive": HTMLRuxIconAllInclusiveElement; "rux-icon-all-out": HTMLRuxIconAllOutElement; "rux-icon-alternate-email": HTMLRuxIconAlternateEmailElement; "rux-icon-altitude": HTMLRuxIconAltitudeElement; "rux-icon-android": HTMLRuxIconAndroidElement; "rux-icon-announcement": HTMLRuxIconAnnouncementElement; "rux-icon-antenna": HTMLRuxIconAntennaElement; "rux-icon-antenna-off": HTMLRuxIconAntennaOffElement; "rux-icon-antenna-receive": HTMLRuxIconAntennaReceiveElement; "rux-icon-antenna-transmit": HTMLRuxIconAntennaTransmitElement; "rux-icon-apps": HTMLRuxIconAppsElement; "rux-icon-archive": HTMLRuxIconArchiveElement; "rux-icon-arrow-back": HTMLRuxIconArrowBackElement; "rux-icon-arrow-back-ios": HTMLRuxIconArrowBackIosElement; "rux-icon-arrow-downward": HTMLRuxIconArrowDownwardElement; "rux-icon-arrow-drop-down": HTMLRuxIconArrowDropDownElement; "rux-icon-arrow-drop-down-circle": HTMLRuxIconArrowDropDownCircleElement; "rux-icon-arrow-drop-up": HTMLRuxIconArrowDropUpElement; "rux-icon-arrow-forward": HTMLRuxIconArrowForwardElement; "rux-icon-arrow-forward-ios": HTMLRuxIconArrowForwardIosElement; "rux-icon-arrow-left": HTMLRuxIconArrowLeftElement; "rux-icon-arrow-right": HTMLRuxIconArrowRightElement; "rux-icon-arrow-right-alt": HTMLRuxIconArrowRightAltElement; "rux-icon-arrow-upward": HTMLRuxIconArrowUpwardElement; "rux-icon-art-track": HTMLRuxIconArtTrackElement; "rux-icon-aspect-ratio": HTMLRuxIconAspectRatioElement; "rux-icon-assessment": HTMLRuxIconAssessmentElement; "rux-icon-assignment": HTMLRuxIconAssignmentElement; "rux-icon-assignment-find": HTMLRuxIconAssignmentFindElement; "rux-icon-assignment-late": HTMLRuxIconAssignmentLateElement; "rux-icon-assignment-return": HTMLRuxIconAssignmentReturnElement; "rux-icon-assignment-returned": HTMLRuxIconAssignmentReturnedElement; "rux-icon-assignment-turned-in": HTMLRuxIconAssignmentTurnedInElement; "rux-icon-assistant": HTMLRuxIconAssistantElement; "rux-icon-assistant-photo": HTMLRuxIconAssistantPhotoElement; "rux-icon-attach-file": HTMLRuxIconAttachFileElement; "rux-icon-attach-money": HTMLRuxIconAttachMoneyElement; "rux-icon-attachment": HTMLRuxIconAttachmentElement; "rux-icon-audiotrack": HTMLRuxIconAudiotrackElement; "rux-icon-autorenew": HTMLRuxIconAutorenewElement; "rux-icon-av-timer": HTMLRuxIconAvTimerElement; "rux-icon-backspace": HTMLRuxIconBackspaceElement; "rux-icon-backup": HTMLRuxIconBackupElement; "rux-icon-ballot": HTMLRuxIconBallotElement; "rux-icon-bar-chart": HTMLRuxIconBarChartElement; "rux-icon-battery-20": HTMLRuxIconBattery20Element; "rux-icon-battery-30": HTMLRuxIconBattery30Element; "rux-icon-battery-50": HTMLRuxIconBattery50Element; "rux-icon-battery-60": HTMLRuxIconBattery60Element; "rux-icon-battery-80": HTMLRuxIconBattery80Element; "rux-icon-battery-90": HTMLRuxIconBattery90Element; "rux-icon-battery-alert": HTMLRuxIconBatteryAlertElement; "rux-icon-battery-charging-20": HTMLRuxIconBatteryCharging20Element; "rux-icon-battery-charging-30": HTMLRuxIconBatteryCharging30Element; "rux-icon-battery-charging-50": HTMLRuxIconBatteryCharging50Element; "rux-icon-battery-charging-60": HTMLRuxIconBatteryCharging60Element; "rux-icon-battery-charging-80": HTMLRuxIconBatteryCharging80Element; "rux-icon-battery-charging-90": HTMLRuxIconBatteryCharging90Element; "rux-icon-battery-charging-full": HTMLRuxIconBatteryChargingFullElement; "rux-icon-battery-full": HTMLRuxIconBatteryFullElement; "rux-icon-battery-std": HTMLRuxIconBatteryStdElement; "rux-icon-battery-unknown": HTMLRuxIconBatteryUnknownElement; "rux-icon-beach-access": HTMLRuxIconBeachAccessElement; "rux-icon-beenhere": HTMLRuxIconBeenhereElement; "rux-icon-block": HTMLRuxIconBlockElement; "rux-icon-bluetooth": HTMLRuxIconBluetoothElement; "rux-icon-bluetooth-audio": HTMLRuxIconBluetoothAudioElement; "rux-icon-bluetooth-connected": HTMLRuxIconBluetoothConnectedElement; "rux-icon-bluetooth-disabled": HTMLRuxIconBluetoothDisabledElement; "rux-icon-bluetooth-searching": HTMLRuxIconBluetoothSearchingElement; "rux-icon-blur-circular": HTMLRuxIconBlurCircularElement; "rux-icon-blur-linear": HTMLRuxIconBlurLinearElement; "rux-icon-blur-off": HTMLRuxIconBlurOffElement; "rux-icon-blur-on": HTMLRuxIconBlurOnElement; "rux-icon-book": HTMLRuxIconBookElement; "rux-icon-bookmark": HTMLRuxIconBookmarkElement; "rux-icon-bookmark-border": HTMLRuxIconBookmarkBorderElement; "rux-icon-bookmarks": HTMLRuxIconBookmarksElement; "rux-icon-border-all": HTMLRuxIconBorderAllElement; "rux-icon-border-bottom": HTMLRuxIconBorderBottomElement; "rux-icon-border-clear": HTMLRuxIconBorderClearElement; "rux-icon-border-color": HTMLRuxIconBorderColorElement; "rux-icon-border-horizontal": HTMLRuxIconBorderHorizontalElement; "rux-icon-border-inner": HTMLRuxIconBorderInnerElement; "rux-icon-border-left": HTMLRuxIconBorderLeftElement; "rux-icon-border-outer": HTMLRuxIconBorderOuterElement; "rux-icon-border-right": HTMLRuxIconBorderRightElement; "rux-icon-border-style": HTMLRuxIconBorderStyleElement; "rux-icon-border-top": HTMLRuxIconBorderTopElement; "rux-icon-border-vertical": HTMLRuxIconBorderVerticalElement; "rux-icon-branding-watermark": HTMLRuxIconBrandingWatermarkElement; "rux-icon-brightness-1": HTMLRuxIconBrightness1Element; "rux-icon-brightness-2": HTMLRuxIconBrightness2Element; "rux-icon-brightness-3": HTMLRuxIconBrightness3Element; "rux-icon-brightness-4": HTMLRuxIconBrightness4Element; "rux-icon-brightness-5": HTMLRuxIconBrightness5Element; "rux-icon-brightness-6": HTMLRuxIconBrightness6Element; "rux-icon-brightness-7": HTMLRuxIconBrightness7Element; "rux-icon-brightness-auto": HTMLRuxIconBrightnessAutoElement; "rux-icon-brightness-high": HTMLRuxIconBrightnessHighElement; "rux-icon-brightness-low": HTMLRuxIconBrightnessLowElement; "rux-icon-brightness-medium": HTMLRuxIconBrightnessMediumElement; "rux-icon-broken-image": HTMLRuxIconBrokenImageElement; "rux-icon-brush": HTMLRuxIconBrushElement; "rux-icon-bubble-chart": HTMLRuxIconBubbleChartElement; "rux-icon-bug-report": HTMLRuxIconBugReportElement; "rux-icon-build": HTMLRuxIconBuildElement; "rux-icon-burst-mode": HTMLRuxIconBurstModeElement; "rux-icon-business": HTMLRuxIconBusinessElement; "rux-icon-business-center": HTMLRuxIconBusinessCenterElement; "rux-icon-cached": HTMLRuxIconCachedElement; "rux-icon-cake": HTMLRuxIconCakeElement; "rux-icon-calendar-today": HTMLRuxIconCalendarTodayElement; "rux-icon-calendar-view-day": HTMLRuxIconCalendarViewDayElement; "rux-icon-call": HTMLRuxIconCallElement; "rux-icon-call-end": HTMLRuxIconCallEndElement; "rux-icon-call-made": HTMLRuxIconCallMadeElement; "rux-icon-call-merge": HTMLRuxIconCallMergeElement; "rux-icon-call-missed": HTMLRuxIconCallMissedElement; "rux-icon-call-missed-outgoing": HTMLRuxIconCallMissedOutgoingElement; "rux-icon-call-received": HTMLRuxIconCallReceivedElement; "rux-icon-call-split": HTMLRuxIconCallSplitElement; "rux-icon-call-to-action": HTMLRuxIconCallToActionElement; "rux-icon-camera": HTMLRuxIconCameraElement; "rux-icon-camera-alt": HTMLRuxIconCameraAltElement; "rux-icon-camera-enhance": HTMLRuxIconCameraEnhanceElement; "rux-icon-camera-front": HTMLRuxIconCameraFrontElement; "rux-icon-camera-rear": HTMLRuxIconCameraRearElement; "rux-icon-camera-roll": HTMLRuxIconCameraRollElement; "rux-icon-cancel": HTMLRuxIconCancelElement; "rux-icon-cancel-presentation": HTMLRuxIconCancelPresentationElement; "rux-icon-card-giftcard": HTMLRuxIconCardGiftcardElement; "rux-icon-card-membership": HTMLRuxIconCardMembershipElement; "rux-icon-card-travel": HTMLRuxIconCardTravelElement; "rux-icon-casino": HTMLRuxIconCasinoElement; "rux-icon-cast": HTMLRuxIconCastElement; "rux-icon-cast-connected": HTMLRuxIconCastConnectedElement; "rux-icon-cast-for-education": HTMLRuxIconCastForEducationElement; "rux-icon-category": HTMLRuxIconCategoryElement; "rux-icon-cell-wifi": HTMLRuxIconCellWifiElement; "rux-icon-center-focus-strong": HTMLRuxIconCenterFocusStrongElement; "rux-icon-center-focus-weak": HTMLRuxIconCenterFocusWeakElement; "rux-icon-change-history": HTMLRuxIconChangeHistoryElement; "rux-icon-chat": HTMLRuxIconChatElement; "rux-icon-chat-bubble": HTMLRuxIconChatBubbleElement; "rux-icon-chat-bubble-outline": HTMLRuxIconChatBubbleOutlineElement; "rux-icon-check": HTMLRuxIconCheckElement; "rux-icon-check-box": HTMLRuxIconCheckBoxElement; "rux-icon-check-box-outline-blank": HTMLRuxIconCheckBoxOutlineBlankElement; "rux-icon-check-circle": HTMLRuxIconCheckCircleElement; "rux-icon-check-circle-outline": HTMLRuxIconCheckCircleOutlineElement; "rux-icon-chevron-left": HTMLRuxIconChevronLeftElement; "rux-icon-chevron-right": HTMLRuxIconChevronRightElement; "rux-icon-child-care": HTMLRuxIconChildCareElement; "rux-icon-child-friendly": HTMLRuxIconChildFriendlyElement; "rux-icon-chrome-reader-mode": HTMLRuxIconChromeReaderModeElement; "rux-icon-class": HTMLRuxIconClassElement; "rux-icon-clear": HTMLRuxIconClearElement; "rux-icon-clear-all": HTMLRuxIconClearAllElement; "rux-icon-close": HTMLRuxIconCloseElement; "rux-icon-closed-caption": HTMLRuxIconClosedCaptionElement; "rux-icon-cloud": HTMLRuxIconCloudElement; "rux-icon-cloud-circle": HTMLRuxIconCloudCircleElement; "rux-icon-cloud-done": HTMLRuxIconCloudDoneElement; "rux-icon-cloud-download": HTMLRuxIconCloudDownloadElement; "rux-icon-cloud-off": HTMLRuxIconCloudOffElement; "rux-icon-cloud-queue": HTMLRuxIconCloudQueueElement; "rux-icon-cloud-upload": HTMLRuxIconCloudUploadElement; "rux-icon-code": HTMLRuxIconCodeElement; "rux-icon-collections": HTMLRuxIconCollectionsElement; "rux-icon-collections-bookmark": HTMLRuxIconCollectionsBookmarkElement; "rux-icon-color-lens": HTMLRuxIconColorLensElement; "rux-icon-colorize": HTMLRuxIconColorizeElement; "rux-icon-comment": HTMLRuxIconCommentElement; "rux-icon-commute": HTMLRuxIconCommuteElement; "rux-icon-compare": HTMLRuxIconCompareElement; "rux-icon-compare-arrows": HTMLRuxIconCompareArrowsElement; "rux-icon-compass-calibration": HTMLRuxIconCompassCalibrationElement; "rux-icon-computer": HTMLRuxIconComputerElement; "rux-icon-confirmation-number": HTMLRuxIconConfirmationNumberElement; "rux-icon-contact-mail": HTMLRuxIconContactMailElement; "rux-icon-contact-phone": HTMLRuxIconContactPhoneElement; "rux-icon-contact-support": HTMLRuxIconContactSupportElement; "rux-icon-contacts": HTMLRuxIconContactsElement; "rux-icon-control-camera": HTMLRuxIconControlCameraElement; "rux-icon-control-point": HTMLRuxIconControlPointElement; "rux-icon-control-point-duplicate": HTMLRuxIconControlPointDuplicateElement; "rux-icon-copyright": HTMLRuxIconCopyrightElement; "rux-icon-create": HTMLRuxIconCreateElement; "rux-icon-create-new-folder": HTMLRuxIconCreateNewFolderElement; "rux-icon-credit-card": HTMLRuxIconCreditCardElement; "rux-icon-crop": HTMLRuxIconCropElement; "rux-icon-crop-16-9": HTMLRuxIconCrop169Element; "rux-icon-crop-3-2": HTMLRuxIconCrop32Element; "rux-icon-crop-5-4": HTMLRuxIconCrop54Element; "rux-icon-crop-7-5": HTMLRuxIconCrop75Element; "rux-icon-crop-din": HTMLRuxIconCropDinElement; "rux-icon-crop-free": HTMLRuxIconCropFreeElement; "rux-icon-crop-landscape": HTMLRuxIconCropLandscapeElement; "rux-icon-crop-original": HTMLRuxIconCropOriginalElement; "rux-icon-crop-portrait": HTMLRuxIconCropPortraitElement; "rux-icon-crop-rotate": HTMLRuxIconCropRotateElement; "rux-icon-crop-square": HTMLRuxIconCropSquareElement; "rux-icon-dashboard": HTMLRuxIconDashboardElement; "rux-icon-data-usage": HTMLRuxIconDataUsageElement; "rux-icon-date-range": HTMLRuxIconDateRangeElement; "rux-icon-dehaze": HTMLRuxIconDehazeElement; "rux-icon-delete": HTMLRuxIconDeleteElement; "rux-icon-delete-forever": HTMLRuxIconDeleteForeverElement; "rux-icon-delete-outline": HTMLRuxIconDeleteOutlineElement; "rux-icon-delete-sweep": HTMLRuxIconDeleteSweepElement; "rux-icon-departure-board": HTMLRuxIconDepartureBoardElement; "rux-icon-description": HTMLRuxIconDescriptionElement; "rux-icon-desktop-access-disabled": HTMLRuxIconDesktopAccessDisabledElement; "rux-icon-desktop-mac": HTMLRuxIconDesktopMacElement; "rux-icon-desktop-windows": HTMLRuxIconDesktopWindowsElement; "rux-icon-details": HTMLRuxIconDetailsElement; "rux-icon-developer-board": HTMLRuxIconDeveloperBoardElement; "rux-icon-developer-mode": HTMLRuxIconDeveloperModeElement; "rux-icon-device-hub": HTMLRuxIconDeviceHubElement; "rux-icon-device-unknown": HTMLRuxIconDeviceUnknownElement; "rux-icon-devices": HTMLRuxIconDevicesElement; "rux-icon-devices-other": HTMLRuxIconDevicesOtherElement; "rux-icon-dialer-sip": HTMLRuxIconDialerSipElement; "rux-icon-dialpad": HTMLRuxIconDialpadElement; "rux-icon-directions": HTMLRuxIconDirectionsElement; "rux-icon-directions-bike": HTMLRuxIconDirectionsBikeElement; "rux-icon-directions-boat": HTMLRuxIconDirectionsBoatElement; "rux-icon-directions-bus": HTMLRuxIconDirectionsBusElement; "rux-icon-directions-car": HTMLRuxIconDirectionsCarElement; "rux-icon-directions-railway": HTMLRuxIconDirectionsRailwayElement; "rux-icon-directions-run": HTMLRuxIconDirectionsRunElement; "rux-icon-directions-subway": HTMLRuxIconDirectionsSubwayElement; "rux-icon-directions-transit": HTMLRuxIconDirectionsTransitElement; "rux-icon-directions-walk": HTMLRuxIconDirectionsWalkElement; "rux-icon-disc-full": HTMLRuxIconDiscFullElement; "rux-icon-dns": HTMLRuxIconDnsElement; "rux-icon-dock": HTMLRuxIconDockElement; "rux-icon-domain": HTMLRuxIconDomainElement; "rux-icon-domain-disabled": HTMLRuxIconDomainDisabledElement; "rux-icon-done": HTMLRuxIconDoneElement; "rux-icon-done-all": HTMLRuxIconDoneAllElement; "rux-icon-done-outline": HTMLRuxIconDoneOutlineElement; "rux-icon-donut-large": HTMLRuxIconDonutLargeElement; "rux-icon-donut-small": HTMLRuxIconDonutSmallElement; "rux-icon-drafts": HTMLRuxIconDraftsElement; "rux-icon-drag-handle": HTMLRuxIconDragHandleElement; "rux-icon-drag-indicator": HTMLRuxIconDragIndicatorElement; "rux-icon-drive-eta": HTMLRuxIconDriveEtaElement; "rux-icon-duo": HTMLRuxIconDuoElement; "rux-icon-dvr": HTMLRuxIconDvrElement; "rux-icon-edit": HTMLRuxIconEditElement; "rux-icon-edit-attributes": HTMLRuxIconEditAttributesElement; "rux-icon-edit-location": HTMLRuxIconEditLocationElement; "rux-icon-eject": HTMLRuxIconEjectElement; "rux-icon-email": HTMLRuxIconEmailElement; "rux-icon-enhanced-encryption": HTMLRuxIconEnhancedEncryptionElement; "rux-icon-equalizer": HTMLRuxIconEqualizerElement; "rux-icon-equipment": HTMLRuxIconEquipmentElement; "rux-icon-error": HTMLRuxIconErrorElement; "rux-icon-error-outline": HTMLRuxIconErrorOutlineElement; "rux-icon-euro-symbol": HTMLRuxIconEuroSymbolElement; "rux-icon-ev-station": HTMLRuxIconEvStationElement; "rux-icon-event": HTMLRuxIconEventElement; "rux-icon-event-available": HTMLRuxIconEventAvailableElement; "rux-icon-event-busy": HTMLRuxIconEventBusyElement; "rux-icon-event-note": HTMLRuxIconEventNoteElement; "rux-icon-exit-to-app": HTMLRuxIconExitToAppElement; "rux-icon-expand-less": HTMLRuxIconExpandLessElement; "rux-icon-expand-more": HTMLRuxIconExpandMoreElement; "rux-icon-explicit": HTMLRuxIconExplicitElement; "rux-icon-explore": HTMLRuxIconExploreElement; "rux-icon-explore-off": HTMLRuxIconExploreOffElement; "rux-icon-exposure": HTMLRuxIconExposureElement; "rux-icon-exposure-neg-1": HTMLRuxIconExposureNeg1Element; "rux-icon-exposure-neg-2": HTMLRuxIconExposureNeg2Element; "rux-icon-exposure-plus-1": HTMLRuxIconExposurePlus1Element; "rux-icon-exposure-plus-2": HTMLRuxIconExposurePlus2Element; "rux-icon-exposure-zero": HTMLRuxIconExposureZeroElement; "rux-icon-extension": HTMLRuxIconExtensionElement; "rux-icon-face": HTMLRuxIconFaceElement; "rux-icon-fast-forward": HTMLRuxIconFastForwardElement; "rux-icon-fast-rewind": HTMLRuxIconFastRewindElement; "rux-icon-fastfood": HTMLRuxIconFastfoodElement; "rux-icon-favorite": HTMLRuxIconFavoriteElement; "rux-icon-favorite-border": HTMLRuxIconFavoriteBorderElement; "rux-icon-featured-play-list": HTMLRuxIconFeaturedPlayListElement; "rux-icon-featured-video": HTMLRuxIconFeaturedVideoElement; "rux-icon-feedback": HTMLRuxIconFeedbackElement; "rux-icon-fiber-dvr": HTMLRuxIconFiberDvrElement; "rux-icon-fiber-manual-record": HTMLRuxIconFiberManualRecordElement; "rux-icon-fiber-new": HTMLRuxIconFiberNewElement; "rux-icon-fiber-pin": HTMLRuxIconFiberPinElement; "rux-icon-fiber-smart-record": HTMLRuxIconFiberSmartRecordElement; "rux-icon-file-copy": HTMLRuxIconFileCopyElement; "rux-icon-filter": HTMLRuxIconFilterElement; "rux-icon-filter-1": HTMLRuxIconFilter1Element; "rux-icon-filter-2": HTMLRuxIconFilter2Element; "rux-icon-filter-3": HTMLRuxIconFilter3Element; "rux-icon-filter-4": HTMLRuxIconFilter4Element; "rux-icon-filter-5": HTMLRuxIconFilter5Element; "rux-icon-filter-6": HTMLRuxIconFilter6Element; "rux-icon-filter-7": HTMLRuxIconFilter7Element; "rux-icon-filter-8": HTMLRuxIconFilter8Element; "rux-icon-filter-9": HTMLRuxIconFilter9Element; "rux-icon-filter-9-plus": HTMLRuxIconFilter9PlusElement; "rux-icon-filter-b-and-w": HTMLRuxIconFilterBAndWElement; "rux-icon-filter-center-focus": HTMLRuxIconFilterCenterFocusElement; "rux-icon-filter-drama": HTMLRuxIconFilterDramaElement; "rux-icon-filter-frames": HTMLRuxIconFilterFramesElement; "rux-icon-filter-hdr": HTMLRuxIconFilterHdrElement; "rux-icon-filter-list": HTMLRuxIconFilterListElement; "rux-icon-filter-none": HTMLRuxIconFilterNoneElement; "rux-icon-filter-tilt-shift": HTMLRuxIconFilterTiltShiftElement; "rux-icon-filter-vintage": HTMLRuxIconFilterVintageElement; "rux-icon-find-in-page": HTMLRuxIconFindInPageElement; "rux-icon-find-replace": HTMLRuxIconFindReplaceElement; "rux-icon-fingerprint": HTMLRuxIconFingerprintElement; "rux-icon-first-page": HTMLRuxIconFirstPageElement; "rux-icon-fitness-center": HTMLRuxIconFitnessCenterElement; "rux-icon-flag": HTMLRuxIconFlagElement; "rux-icon-flare": HTMLRuxIconFlareElement; "rux-icon-flash-auto": HTMLRuxIconFlashAutoElement; "rux-icon-flash-off": HTMLRuxIconFlashOffElement; "rux-icon-flash-on": HTMLRuxIconFlashOnElement; "rux-icon-flight": HTMLRuxIconFlightElement; "rux-icon-flight-land": HTMLRuxIconFlightLandElement; "rux-icon-flight-takeoff": HTMLRuxIconFlightTakeoffElement; "rux-icon-flip": HTMLRuxIconFlipElement; "rux-icon-flip-to-back": HTMLRuxIconFlipToBackElement; "rux-icon-flip-to-front": HTMLRuxIconFlipToFrontElement; "rux-icon-folder": HTMLRuxIconFolderElement; "rux-icon-folder-open": HTMLRuxIconFolderOpenElement; "rux-icon-folder-shared": HTMLRuxIconFolderSharedElement; "rux-icon-folder-special": HTMLRuxIconFolderSpecialElement; "rux-icon-font-download": HTMLRuxIconFontDownloadElement; "rux-icon-format-align-center": HTMLRuxIconFormatAlignCenterElement; "rux-icon-format-align-justify": HTMLRuxIconFormatAlignJustifyElement; "rux-icon-format-align-left": HTMLRuxIconFormatAlignLeftElement; "rux-icon-format-align-right": HTMLRuxIconFormatAlignRightElement; "rux-icon-format-bold": HTMLRuxIconFormatBoldElement; "rux-icon-format-clear": HTMLRuxIconFormatClearElement; "rux-icon-format-color-fill": HTMLRuxIconFormatColorFillElement; "rux-icon-format-color-reset": HTMLRuxIconFormatColorResetElement; "rux-icon-format-color-text": HTMLRuxIconFormatColorTextElement; "rux-icon-format-indent-decrease": HTMLRuxIconFormatIndentDecreaseElement; "rux-icon-format-indent-increase": HTMLRuxIconFormatIndentIncreaseElement; "rux-icon-format-italic": HTMLRuxIconFormatItalicElement; "rux-icon-format-line-spacing": HTMLRuxIconFormatLineSpacingElement; "rux-icon-format-list-bulleted": HTMLRuxIconFormatListBulletedElement; "rux-icon-format-list-numbered": HTMLRuxIconFormatListNumberedElement; "rux-icon-format-list-numbered-rtl": HTMLRuxIconFormatListNumberedRtlElement; "rux-icon-format-paint": HTMLRuxIconFormatPaintElement; "rux-icon-format-quote": HTMLRuxIconFormatQuoteElement; "rux-icon-format-shapes": HTMLRuxIconFormatShapesElement; "rux-icon-format-size": HTMLRuxIconFormatSizeElement; "rux-icon-format-strikethrough": HTMLRuxIconFormatStrikethroughElement; "rux-icon-format-textdirection-l-to-r": HTMLRuxIconFormatTextdirectionLToRElement; "rux-icon-format-textdirection-r-to-l": HTMLRuxIconFormatTextdirectionRToLElement; "rux-icon-format-underlined": HTMLRuxIconFormatUnderlinedElement; "rux-icon-forum": HTMLRuxIconForumElement; "rux-icon-forward": HTMLRuxIconForwardElement; "rux-icon-forward-10": HTMLRuxIconForward10Element; "rux-icon-forward-30": HTMLRuxIconForward30Element; "rux-icon-forward-5": HTMLRuxIconForward5Element; "rux-icon-free-breakfast": HTMLRuxIconFreeBreakfastElement; "rux-icon-fullscreen": HTMLRuxIconFullscreenElement; "rux-icon-fullscreen-exit": HTMLRuxIconFullscreenExitElement; "rux-icon-functions": HTMLRuxIconFunctionsElement; "rux-icon-g-translate": HTMLRuxIconGTranslateElement; "rux-icon-gamepad": HTMLRuxIconGamepadElement; "rux-icon-games": HTMLRuxIconGamesElement; "rux-icon-gavel": HTMLRuxIconGavelElement; "rux-icon-gesture": HTMLRuxIconGestureElement; "rux-icon-get-app": HTMLRuxIconGetAppElement; "rux-icon-gif": HTMLRuxIconGifElement; "rux-icon-golf-course": HTMLRuxIconGolfCourseElement; "rux-icon-gps-fixed": HTMLRuxIconGpsFixedElement; "rux-icon-gps-not-fixed": HTMLRuxIconGpsNotFixedElement; "rux-icon-gps-off": HTMLRuxIconGpsOffElement; "rux-icon-grade": HTMLRuxIconGradeElement; "rux-icon-gradient": HTMLRuxIconGradientElement; "rux-icon-grain": HTMLRuxIconGrainElement; "rux-icon-graphic-eq": HTMLRuxIconGraphicEqElement; "rux-icon-grid-off": HTMLRuxIconGridOffElement; "rux-icon-grid-on": HTMLRuxIconGridOnElement; "rux-icon-group": HTMLRuxIconGroupElement; "rux-icon-group-add": HTMLRuxIconGroupAddElement; "rux-icon-group-work": HTMLRuxIconGroupWorkElement; "rux-icon-hardware": HTMLRuxIconHardwareElement; "rux-icon-hd": HTMLRuxIconHdElement; "rux-icon-hdr-off": HTMLRuxIconHdrOffElement; "rux-icon-hdr-on": HTMLRuxIconHdrOnElement; "rux-icon-hdr-strong": HTMLRuxIconHdrStrongElement; "rux-icon-hdr-weak": HTMLRuxIconHdrWeakElement; "rux-icon-headset": HTMLRuxIconHeadsetElement; "rux-icon-headset-mic": HTMLRuxIconHeadsetMicElement; "rux-icon-healing": HTMLRuxIconHealingElement; "rux-icon-hearing": HTMLRuxIconHearingElement; "rux-icon-help": HTMLRuxIconHelpElement; "rux-icon-help-outline": HTMLRuxIconHelpOutlineElement; "rux-icon-high-quality": HTMLRuxIconHighQualityElement; "rux-icon-highlight": HTMLRuxIconHighlightElement; "rux-icon-highlight-off": HTMLRuxIconHighlightOffElement; "rux-icon-history": HTMLRuxIconHistoryElement; "rux-icon-home": HTMLRuxIconHomeElement; "rux-icon-horizontal-split": HTMLRuxIconHorizontalSplitElement; "rux-icon-hot-tub": HTMLRuxIconHotTubElement; "rux-icon-hotel": HTMLRuxIconHotelElement; "rux-icon-hourglass-empty": HTMLRuxIconHourglassEmptyElement; "rux-icon-hourglass-full": HTMLRuxIconHourglassFullElement; "rux-icon-how-to-reg": HTMLRuxIconHowToRegElement; "rux-icon-how-to-vote": HTMLRuxIconHowToVoteElement; "rux-icon-http": HTMLRuxIconHttpElement; "rux-icon-https": HTMLRuxIconHttpsElement; "rux-icon-image": HTMLRuxIconImageElement; "rux-icon-image-aspect-ratio": HTMLRuxIconImageAspectRatioElement; "rux-icon-image-search": HTMLRuxIconImageSearchElement; "rux-icon-import-contacts": HTMLRuxIconImportContactsElement; "rux-icon-import-export": HTMLRuxIconImportExportElement; "rux-icon-important-devices": HTMLRuxIconImportantDevicesElement; "rux-icon-inbox": HTMLRuxIconInboxElement; "rux-icon-indeterminate-check-box": HTMLRuxIconIndeterminateCheckBoxElement; "rux-icon-info": HTMLRuxIconInfoElement; "rux-icon-input": HTMLRuxIconInputElement; "rux-icon-insert-chart": HTMLRuxIconInsertChartElement; "rux-icon-insert-chart-outlined": HTMLRuxIconInsertChartOutlinedElement; "rux-icon-insert-comment": HTMLRuxIconInsertCommentElement; "rux-icon-insert-drive-file": HTMLRuxIconInsertDriveFileElement; "rux-icon-insert-emoticon": HTMLRuxIconInsertEmoticonElement; "rux-icon-insert-invitation": HTMLRuxIconInsertInvitationElement; "rux-icon-insert-link": HTMLRuxIconInsertLinkElement; "rux-icon-insert-photo": HTMLRuxIconInsertPhotoElement; "rux-icon-invert-colors": HTMLRuxIconInvertColorsElement; "rux-icon-invert-colors-off": HTMLRuxIconInvertColorsOffElement; "rux-icon-iso": HTMLRuxIconIsoElement; "rux-icon-keyboard": HTMLRuxIconKeyboardElement; "rux-icon-keyboard-arrow-down": HTMLRuxIconKeyboardArrowDownElement; "rux-icon-keyboard-arrow-left": HTMLRuxIconKeyboardArrowLeftElement; "rux-icon-keyboard-arrow-right": HTMLRuxIconKeyboardArrowRightElement; "rux-icon-keyboard-arrow-up": HTMLRuxIconKeyboardArrowUpElement; "rux-icon-keyboard-backspace": HTMLRuxIconKeyboardBackspaceElement; "rux-icon-keyboard-capslock": HTMLRuxIconKeyboardCapslockElement; "rux-icon-keyboard-hide": HTMLRuxIconKeyboardHideElement; "rux-icon-keyboard-return": HTMLRuxIconKeyboardReturnElement; "rux-icon-keyboard-tab": HTMLRuxIconKeyboardTabElement; "rux-icon-keyboard-voice": HTMLRuxIconKeyboardVoiceElement; "rux-icon-kitchen": HTMLRuxIconKitchenElement; "rux-icon-label": HTMLRuxIconLabelElement; "rux-icon-label-important": HTMLRuxIconLabelImportantElement; "rux-icon-label-off": HTMLRuxIconLabelOffElement; "rux-icon-landscape": HTMLRuxIconLandscapeElement; "rux-icon-language": HTMLRuxIconLanguageElement; "rux-icon-laptop": HTMLRuxIconLaptopElement; "rux-icon-laptop-chromebook": HTMLRuxIconLaptopChromebookElement; "rux-icon-laptop-mac": HTMLRuxIconLaptopMacElement; "rux-icon-laptop-windows": HTMLRuxIconLaptopWindowsElement; "rux-icon-last-page": HTMLRuxIconLastPageElement; "rux-icon-launch": HTMLRuxIconLaunchElement; "rux-icon-layers": HTMLRuxIconLayersElement; "rux-icon-layers-clear": HTMLRuxIconLayersClearElement; "rux-icon-leak-add": HTMLRuxIconLeakAddElement; "rux-icon-leak-remove": HTMLRuxIconLeakRemoveElement; "rux-icon-lens": HTMLRuxIconLensElement; "rux-icon-library-add": HTMLRuxIconLibraryAddElement; "rux-icon-library-books": HTMLRuxIconLibraryBooksElement; "rux-icon-library-music": HTMLRuxIconLibraryMusicElement; "rux-icon-line-style": HTMLRuxIconLineStyleElement; "rux-icon-line-weight": HTMLRuxIconLineWeightElement; "rux-icon-linear-scale": HTMLRuxIconLinearScaleElement; "rux-icon-link": HTMLRuxIconLinkElement; "rux-icon-link-off": HTMLRuxIconLinkOffElement; "rux-icon-linked-camera": HTMLRuxIconLinkedCameraElement; "rux-icon-list": HTMLRuxIconListElement; "rux-icon-list-alt": HTMLRuxIconListAltElement; "rux-icon-live-help": HTMLRuxIconLiveHelpElement; "rux-icon-live-tv": HTMLRuxIconLiveTvElement; "rux-icon-local-activity": HTMLRuxIconLocalActivityElement; "rux-icon-local-airport": HTMLRuxIconLocalAirportElement; "rux-icon-local-atm": HTMLRuxIconLocalAtmElement; "rux-icon-local-bar": HTMLRuxIconLocalBarElement; "rux-icon-local-cafe": HTMLRuxIconLocalCafeElement; "rux-icon-local-car-wash": HTMLRuxIconLocalCarWashElement; "rux-icon-local-convenience-store": HTMLRuxIconLocalConvenienceStoreElement; "rux-icon-local-dining": HTMLRuxIconLocalDiningElement; "rux-icon-local-drink": HTMLRuxIconLocalDrinkElement; "rux-icon-local-gas-station": HTMLRuxIconLocalGasStationElement; "rux-icon-local-grocery-store": HTMLRuxIconLocalGroceryStoreElement; "rux-icon-local-hospital": HTMLRuxIconLocalHospitalElement; "rux-icon-local-hotel": HTMLRuxIconLocalHotelElement; "rux-icon-local-laundry-service": HTMLRuxIconLocalLaundryServiceElement; "rux-icon-local-library": HTMLRuxIconLocalLibraryElement; "rux-icon-local-mall": HTMLRuxIconLocalMallElement; "rux-icon-local-movies": HTMLRuxIconLocalMoviesElement; "rux-icon-local-offer": HTMLRuxIconLocalOfferElement; "rux-icon-local-parking": HTMLRuxIconLocalParkingElement; "rux-icon-local-pharmacy": HTMLRuxIconLocalPharmacyElement; "rux-icon-local-phone": HTMLRuxIconLocalPhoneElement; "rux-icon-local-play": HTMLRuxIconLocalPlayElement; "rux-icon-local-post-office": HTMLRuxIconLocalPostOfficeElement; "rux-icon-local-printshop": HTMLRuxIconLocalPrintshopElement; "rux-icon-local-see": HTMLRuxIconLocalSeeElement; "rux-icon-local-shipping": HTMLRuxIconLocalShippingElement; "rux-icon-local-taxi": HTMLRuxIconLocalTaxiElement; "rux-icon-location-city": HTMLRuxIconLocationCityElement; "rux-icon-location-disabled": HTMLRuxIconLocationDisabledElement; "rux-icon-location-off": HTMLRuxIconLocationOffElement; "rux-icon-location-on": HTMLRuxIconLocationOnElement; "rux-icon-location-searching": HTMLRuxIconLocationSearchingElement; "rux-icon-lock": HTMLRuxIconLockElement; "rux-icon-lock-open": HTMLRuxIconLockOpenElement; "rux-icon-looks": HTMLRuxIconLooksElement; "rux-icon-looks-1": HTMLRuxIconLooks1Element; "rux-icon-looks-2": HTMLRuxIconLooks2Element; "rux-icon-looks-3": HTMLRuxIconLooks3Element; "rux-icon-looks-4": HTMLRuxIconLooks4Element; "rux-icon-looks-5": HTMLRuxIconLooks5Element; "rux-icon-looks-6": HTMLRuxIconLooks6Element; "rux-icon-loop": HTMLRuxIconLoopElement; "rux-icon-loupe": HTMLRuxIconLoupeElement; "rux-icon-low-priority": HTMLRuxIconLowPriorityElement; "rux-icon-loyalty": HTMLRuxIconLoyaltyElement; "rux-icon-mail": HTMLRuxIconMailElement; "rux-icon-mail-outline": HTMLRuxIconMailOutlineElement; "rux-icon-map": HTMLRuxIconMapElement; "rux-icon-markunread": HTMLRuxIconMarkunreadElement; "rux-icon-markunread-mailbox": HTMLRuxIconMarkunreadMailboxElement; "rux-icon-maximize": HTMLRuxIconMaximizeElement; "rux-icon-meeting-room": HTMLRuxIconMeetingRoomElement; "rux-icon-memory": HTMLRuxIconMemoryElement; "rux-icon-menu": HTMLRuxIconMenuElement; "rux-icon-merge-type": HTMLRuxIconMergeTypeElement; "rux-icon-message": HTMLRuxIconMessageElement; "rux-icon-mic": HTMLRuxIconMicElement; "rux-icon-mic-none": HTMLRuxIconMicNoneElement; "rux-icon-mic-off": HTMLRuxIconMicOffElement; "rux-icon-minimize": HTMLRuxIconMinimizeElement; "rux-icon-missed-video-call": HTMLRuxIconMissedVideoCallElement; "rux-icon-mission": HTMLRuxIconMissionElement; "rux-icon-mms": HTMLRuxIconMmsElement; "rux-icon-mobile-friendly": HTMLRuxIconMobileFriendlyElement; "rux-icon-mobile-off": HTMLRuxIconMobileOffElement; "rux-icon-mobile-screen-share": HTMLRuxIconMobileScreenShareElement; "rux-icon-mode-comment": HTMLRuxIconModeCommentElement; "rux-icon-monetization-on": HTMLRuxIconMonetizationOnElement; "rux-icon-money": HTMLRuxIconMoneyElement; "rux-icon-money-off": HTMLRuxIconMoneyOffElement; "rux-icon-monochrome-photos": HTMLRuxIconMonochromePhotosElement; "rux-icon-mood": HTMLRuxIconMoodElement; "rux-icon-mood-bad": HTMLRuxIconMoodBadElement; "rux-icon-more": HTMLRuxIconMoreElement; "rux-icon-more-horiz": HTMLRuxIconMoreHorizElement; "rux-icon-more-vert": HTMLRuxIconMoreVertElement; "rux-icon-motorcycle": HTMLRuxIconMotorcycleElement; "rux-icon-mouse": HTMLRuxIconMouseElement; "rux-icon-move-to-inbox": HTMLRuxIconMoveToInboxElement; "rux-icon-movie": HTMLRuxIconMovieElement; "rux-icon-movie-creation": HTMLRuxIconMovieCreationElement; "rux-icon-movie-filter": HTMLRuxIconMovieFilterElement; "rux-icon-multiline-chart": HTMLRuxIconMultilineChartElement; "rux-icon-music-note": HTMLRuxIconMusicNoteElement; "rux-icon-music-off": HTMLRuxIconMusicOffElement; "rux-icon-music-video": HTMLRuxIconMusicVideoElement; "rux-icon-my-location": HTMLRuxIconMyLocationElement; "rux-icon-nature": HTMLRuxIconNatureElement; "rux-icon-nature-people": HTMLRuxIconNaturePeopleElement; "rux-icon-navigate-before": HTMLRuxIconNavigateBeforeElement; "rux-icon-navigate-next": HTMLRuxIconNavigateNextElement; "rux-icon-navigation": HTMLRuxIconNavigationElement; "rux-icon-near-me": HTMLRuxIconNearMeElement; "rux-icon-netcom": HTMLRuxIconNetcomElement; "rux-icon-network-cell": HTMLRuxIconNetworkCellElement; "rux-icon-network-check": HTMLRuxIconNetworkCheckElement; "rux-icon-network-locked": HTMLRuxIconNetworkLockedElement; "rux-icon-network-wifi": HTMLRuxIconNetworkWifiElement; "rux-icon-new-releases": HTMLRuxIconNewReleasesElement; "rux-icon-next-week": HTMLRuxIconNextWeekElement; "rux-icon-nfc": HTMLRuxIconNfcElement; "rux-icon-no-encryption": HTMLRuxIconNoEncryptionElement; "rux-icon-no-meeting-room": HTMLRuxIconNoMeetingRoomElement; "rux-icon-no-sim": HTMLRuxIconNoSimElement; "rux-icon-not-interested": HTMLRuxIconNotInterestedElement; "rux-icon-not-listed-location": HTMLRuxIconNotListedLocationElement; "rux-icon-note": HTMLRuxIconNoteElement; "rux-icon-note-add": HTMLRuxIconNoteAddElement; "rux-icon-notes": HTMLRuxIconNotesElement; "rux-icon-notification-important": HTMLRuxIconNotificationImportantElement; "rux-icon-notifications": HTMLRuxIconNotificationsElement; "rux-icon-notifications-active": HTMLRuxIconNotificationsActiveElement; "rux-icon-notifications-none": HTMLRuxIconNotificationsNoneElement; "rux-icon-notifications-off": HTMLRuxIconNotificationsOffElement; "rux-icon-notifications-paused": HTMLRuxIconNotificationsPausedElement; "rux-icon-offline-bolt": HTMLRuxIconOfflineBoltElement; "rux-icon-offline-pin": HTMLRuxIconOfflinePinElement; "rux-icon-ondemand-video": HTMLRuxIconOndemandVideoElement; "rux-icon-opacity": HTMLRuxIconOpacityElement; "rux-icon-open-in-browser": HTMLRuxIconOpenInBrowserElement; "rux-icon-open-in-new": HTMLRuxIconOpenInNewElement; "rux-icon-open-with": HTMLRuxIconOpenWithElement; "rux-icon-outlined-flag": HTMLRuxIconOutlinedFlagElement; "rux-icon-pages": HTMLRuxIconPagesElement; "rux-icon-pageview": HTMLRuxIconPageviewElement; "rux-icon-palette": HTMLRuxIconPaletteElement; "rux-icon-pan-tool": HTMLRuxIconPanToolElement; "rux-icon-panorama": HTMLRuxIconPanoramaElement; "rux-icon-panorama-fish-eye": HTMLRuxIconPanoramaFishEyeElement; "rux-icon-panorama-horizontal": HTMLRuxIconPanoramaHorizontalElement; "rux-icon-panorama-vertical": HTMLRuxIconPanoramaVerticalElement; "rux-icon-panorama-wide-angle": HTMLRuxIconPanoramaWideAngleElement; "rux-icon-party-mode": HTMLRuxIconPartyModeElement; "rux-icon-pause": HTMLRuxIconPauseElement; "rux-icon-pause-circle-filled": HTMLRuxIconPauseCircleFilledElement; "rux-icon-pause-circle-outline": HTMLRuxIconPauseCircleOutlineElement; "rux-icon-pause-presentation": HTMLRuxIconPausePresentationElement; "rux-icon-payload": HTMLRuxIconPayloadElement; "rux-icon-payment": HTMLRuxIconPaymentElement; "rux-icon-people-outline": HTMLRuxIconPeopleOutlineElement; "rux-icon-perm-camera-mic": HTMLRuxIconPermCameraMicElement; "rux-icon-perm-contact-calendar": HTMLRuxIconPermContactCalendarElement; "rux-icon-perm-data-setting": HTMLRuxIconPermDataSettingElement; "rux-icon-perm-device-information": HTMLRuxIconPermDeviceInformationElement; "rux-icon-perm-identity": HTMLRuxIconPermIdentityElement; "rux-icon-perm-media": HTMLRuxIconPermMediaElement; "rux-icon-perm-phone-msg": HTMLRuxIconPermPhoneMsgElement; "rux-icon-perm-scan-wifi": HTMLRuxIconPermScanWifiElement; "rux-icon-person": HTMLRuxIconPersonElement; "rux-icon-person-add": HTMLRuxIconPersonAddElement; "rux-icon-person-add-disabled": HTMLRuxIconPersonAddDisabledElement; "rux-icon-person-outline": HTMLRuxIconPersonOutlineElement; "rux-icon-person-pin": HTMLRuxIconPersonPinElement; "rux-icon-person-pin-circle": HTMLRuxIconPersonPinCircleElement; "rux-icon-personal-video": HTMLRuxIconPersonalVideoElement; "rux-icon-pets": HTMLRuxIconPetsElement; "rux-icon-phone": HTMLRuxIconPhoneElement; "rux-icon-phone-android": HTMLRuxIconPhoneAndroidElement; "rux-icon-phone-bluetooth-speaker": HTMLRuxIconPhoneBluetoothSpeakerElement; "rux-icon-phone-callback": HTMLRuxIconPhoneCallbackElement; "rux-icon-phone-forwarded": HTMLRuxIconPhoneForwardedElement; "rux-icon-phone-in-talk": HTMLRuxIconPhoneInTalkElement; "rux-icon-phone-iphone": HTMLRuxIconPhoneIphoneElement; "rux-icon-phone-locked": HTMLRuxIconPhoneLockedElement; "rux-icon-phone-missed": HTMLRuxIconPhoneMissedElement; "rux-icon-phone-paused": HTMLRuxIconPhonePausedElement; "rux-icon-phonelink": HTMLRuxIconPhonelinkElement; "rux-icon-phonelink-erase": HTMLRuxIconPhonelinkEraseElement; "rux-icon-phonelink-lock": HTMLRuxIconPhonelinkLockElement; "rux-icon-phonelink-off": HTMLRuxIconPhonelinkOffElement; "rux-icon-phonelink-ring": HTMLRuxIconPhonelinkRingElement; "rux-icon-phonelink-setup": HTMLRuxIconPhonelinkSetupElement; "rux-icon-photo": HTMLRuxIconPhotoElement; "rux-icon-photo-album": HTMLRuxIconPhotoAlbumElement; "rux-icon-photo-camera": HTMLRuxIconPhotoCameraElement; "rux-icon-photo-filter": HTMLRuxIconPhotoFilterElement; "rux-icon-photo-library": HTMLRuxIconPhotoLibraryElement; "rux-icon-photo-size-select-actual": HTMLRuxIconPhotoSizeSelectActualElement; "rux-icon-photo-size-select-large": HTMLRuxIconPhotoSizeSelectLargeElement; "rux-icon-photo-size-select-small": HTMLRuxIconPhotoSizeSelectSmallElement; "rux-icon-picture-as-pdf": HTMLRuxIconPictureAsPdfElement; "rux-icon-picture-in-picture": HTMLRuxIconPictureInPictureElement; "rux-icon-picture-in-picture-alt": HTMLRuxIconPictureInPictureAltElement; "rux-icon-pie-chart": HTMLRuxIconPieChartElement; "rux-icon-pin-drop": HTMLRuxIconPinDropElement; "rux-icon-place": HTMLRuxIconPlaceElement; "rux-icon-play-arrow": HTMLRuxIconPlayArrowElement; "rux-icon-play-circle-filled": HTMLRuxIconPlayCircleFilledElement; "rux-icon-play-circle-filled-white": HTMLRuxIconPlayCircleFilledWhiteElement; "rux-icon-play-circle-outline": HTMLRuxIconPlayCircleOutlineElement; "rux-icon-play-for-work": HTMLRuxIconPlayForWorkElement; "rux-icon-playlist-add": HTMLRuxIconPlaylistAddElement; "rux-icon-playlist-add-check": HTMLRuxIconPlaylistAddCheckElement; "rux-icon-playlist-play": HTMLRuxIconPlaylistPlayElement; "rux-icon-plus-one": HTMLRuxIconPlusOneElement; "rux-icon-poll": HTMLRuxIconPollElement; "rux-icon-pool": HTMLRuxIconPoolElement; "rux-icon-portable-wifi-off": HTMLRuxIconPortableWifiOffElement; "rux-icon-portrait": HTMLRuxIconPortraitElement; "rux-icon-power": HTMLRuxIconPowerElement; "rux-icon-power-input": HTMLRuxIconPowerInputElement; "rux-icon-power-off": HTMLRuxIconPowerOffElement; "rux-icon-power-settings-new": HTMLRuxIconPowerSettingsNewElement; "rux-icon-pregnant-woman": HTMLRuxIconPregnantWomanElement; "rux-icon-present-to-all": HTMLRuxIconPresentToAllElement; "rux-icon-print": HTMLRuxIconPrintElement; "rux-icon-print-disabled": HTMLRuxIconPrintDisabledElement; "rux-icon-priority-high": HTMLRuxIconPriorityHighElement; "rux-icon-processor": HTMLRuxIconProcessorElement; "rux-icon-processor-alt": HTMLRuxIconProcessorAltElement; "rux-icon-propulsion-power": HTMLRuxIconPropulsionPowerElement; "rux-icon-public": HTMLRuxIconPublicElement; "rux-icon-publish": HTMLRuxIconPublishElement; "rux-icon-query-builder": HTMLRuxIconQueryBuilderElement; "rux-icon-question-answer": HTMLRuxIconQuestionAnswerElement; "rux-icon-queue": HTMLRuxIconQueueElement; "rux-icon-queue-music": HTMLRuxIconQueueMusicElement; "rux-icon-queue-play-next": HTMLRuxIconQueuePlayNextElement; "rux-icon-radio": HTMLRuxIconRadioElement; "rux-icon-radio-button-checked": HTMLRuxIconRadioButtonCheckedElement; "rux-icon-radio-button-unchecked": HTMLRuxIconRadioButtonUncheckedElement; "rux-icon-rate-review": HTMLRuxIconRateReviewElement; "rux-icon-receipt": HTMLRuxIconReceiptElement; "rux-icon-recent-actors": HTMLRuxIconRecentActorsElement; "rux-icon-record-voice-over": HTMLRuxIconRecordVoiceOverElement; "rux-icon-redeem": HTMLRuxIconRedeemElement; "rux-icon-redo": HTMLRuxIconRedoElement; "rux-icon-refresh": HTMLRuxIconRefreshElement; "rux-icon-release": HTMLRuxIconReleaseElement; "rux-icon-remove": HTMLRuxIconRemoveElement; "rux-icon-remove-circle": HTMLRuxIconRemoveCircleElement; "rux-icon-remove-circle-outline": HTMLRuxIconRemoveCircleOutlineElement; "rux-icon-remove-from-queue": HTMLRuxIconRemoveFromQueueElement; "rux-icon-remove-red-eye": HTMLRuxIconRemoveRedEyeElement; "rux-icon-remove-shopping-cart": HTMLRuxIconRemoveShoppingCartElement; "rux-icon-reorder": HTMLRuxIconReorderElement; "rux-icon-repeat": HTMLRuxIconRepeatElement; "rux-icon-repeat-one": HTMLRuxIconRepeatOneElement; "rux-icon-replay": HTMLRuxIconReplayElement; "rux-icon-replay-10": HTMLRuxIconReplay10Element; "rux-icon-replay-30": HTMLRuxIconReplay30Element; "rux-icon-replay-5": HTMLRuxIconReplay5Element; "rux-icon-reply": HTMLRuxIconReplyElement; "rux-icon-reply-all": HTMLRuxIconReplyAllElement; "rux-icon-report": HTMLRuxIconReportElement; "rux-icon-report-off": HTMLRuxIconReportOffElement; "rux-icon-report-problem": HTMLRuxIconReportProblemElement; "rux-icon-restaurant": HTMLRuxIconRestaurantElement; "rux-icon-restaurant-menu": HTMLRuxIconRestaurantMenuElement; "rux-icon-restore": HTMLRuxIconRestoreElement; "rux-icon-restore-from-trash": HTMLRuxIconRestoreFromTrashElement; "rux-icon-restore-page": HTMLRuxIconRestorePageElement; "rux-icon-ring-volume": HTMLRuxIconRingVolumeElement; "rux-icon-room": HTMLRuxIconRoomElement; "rux-icon-room-service": HTMLRuxIconRoomServiceElement; "rux-icon-rotate-90-degrees-cc": HTMLRuxIconRotate90DegreesCcElement; "rux-icon-rotate-left": HTMLRuxIconRotateLeftElement; "rux-icon-rotate-right": HTMLRuxIconRotateRightElement; "rux-icon-rounded-corner": HTMLRuxIconRoundedCornerElement; "rux-icon-router": HTMLRuxIconRouterElement; "rux-icon-rowing": HTMLRuxIconRowingElement; "rux-icon-rss-feed": HTMLRuxIconRssFeedElement; "rux-icon-rv-hookup": HTMLRuxIconRvHookupElement; "rux-icon-satellite": HTMLRuxIconSatelliteElement; "rux-icon-satellite-off": HTMLRuxIconSatelliteOffElement; "rux-icon-satellite-receive": HTMLRuxIconSatelliteReceiveElement; "rux-icon-satellite-transmit": HTMLRuxIconSatelliteTransmitElement; "rux-icon-save": HTMLRuxIconSaveElement; "rux-icon-save-alt": HTMLRuxIconSaveAltElement; "rux-icon-scanner": HTMLRuxIconScannerElement; "rux-icon-scatter-plot": HTMLRuxIconScatterPlotElement; "rux-icon-schedule": HTMLRuxIconScheduleElement; "rux-icon-school": HTMLRuxIconSchoolElement; "rux-icon-score": HTMLRuxIconScoreElement; "rux-icon-screen-lock-landscape": HTMLRuxIconScreenLockLandscapeElement; "rux-icon-screen-lock-portrait": HTMLRuxIconScreenLockPortraitElement; "rux-icon-screen-lock-rotation": HTMLRuxIconScreenLockRotationElement; "rux-icon-screen-rotation": HTMLRuxIconScreenRotationElement; "rux-icon-screen-share": HTMLRuxIconScreenShareElement; "rux-icon-sd-card": HTMLRuxIconSdCardElement; "rux-icon-sd-storage": HTMLRuxIconSdStorageElement; "rux-icon-search": HTMLRuxIconSearchElement; "rux-icon-seat": HTMLRuxIconSeatElement; "rux-icon-security": HTMLRuxIconSecurityElement; "rux-icon-select-all": HTMLRuxIconSelectAllElement; "rux-icon-send": HTMLRuxIconSendElement; "rux-icon-sentiment-dissatisfied": HTMLRuxIconSentimentDissatisfiedElement; "rux-icon-sentiment-satisfied": HTMLRuxIconSentimentSatisfiedElement; "rux-icon-sentiment-satisfied-alt": HTMLRuxIconSentimentSatisfiedAltElement; "rux-icon-sentiment-very-dissatisfied": HTMLRuxIconSentimentVeryDissatisfiedElement; "rux-icon-sentiment-very-satisfied": HTMLRuxIconSentimentVerySatisfiedElement; "rux-icon-set-power": HTMLRuxIconSetPowerElement; "rux-icon-settings": HTMLRuxIconSettingsElement; "rux-icon-settings-applications": HTMLRuxIconSettingsApplicationsElement; "rux-icon-settings-backup-restore": HTMLRuxIconSettingsBackupRestoreElement; "rux-icon-settings-bluetooth": HTMLRuxIconSettingsBluetoothElement; "rux-icon-settings-brightness": HTMLRuxIconSettingsBrightnessElement; "rux-icon-settings-cell": HTMLRuxIconSettingsCellElement; "rux-icon-settings-ethernet": HTMLRuxIconSettingsEthernetElement; "rux-icon-settings-input-antenna": HTMLRuxIconSettingsInputAntennaElement; "rux-icon-settings-input-component": HTMLRuxIconSettingsInputComponentElement; "rux-icon-settings-input-composite": HTMLRuxIconSettingsInputCompositeElement; "rux-icon-settings-input-hdmi": HTMLRuxIconSettingsInputHdmiElement; "rux-icon-settings-input-svideo": HTMLRuxIconSettingsInputSvideoElement; "rux-icon-settings-overscan": HTMLRuxIconSettingsOverscanElement; "rux-icon-settings-phone": HTMLRuxIconSettingsPhoneElement; "rux-icon-settings-power": HTMLRuxIconSettingsPowerElement; "rux-icon-settings-remote": HTMLRuxIconSettingsRemoteElement; "rux-icon-settings-system-daydream": HTMLRuxIconSettingsSystemDaydreamElement; "rux-icon-settings-voice": HTMLRuxIconSettingsVoiceElement; "rux-icon-share": HTMLRuxIconShareElement; "rux-icon-shop": HTMLRuxIconShopElement; "rux-icon-shop-two": HTMLRuxIconShopTwoElement; "rux-icon-shopping-basket": HTMLRuxIconShoppingBasketElement; "rux-icon-shopping-cart": HTMLRuxIconShoppingCartElement; "rux-icon-short-text": HTMLRuxIconShortTextElement; "rux-icon-show-chart": HTMLRuxIconShowChartElement; "rux-icon-shuffle": HTMLRuxIconShuffleElement; "rux-icon-shutter-speed": HTMLRuxIconShutterSpeedElement; "rux-icon-signal-cellular-0-bar": HTMLRuxIconSignalCellular0BarElement; "rux-icon-signal-cellular-1-bar": HTMLRuxIconSignalCellular1BarElement; "rux-icon-signal-cellular-2-bar": HTMLRuxIconSignalCellular2BarElement; "rux-icon-signal-cellular-3-bar": HTMLRuxIconSignalCellular3BarElement; "rux-icon-signal-cellular-4-bar": HTMLRuxIconSignalCellular4BarElement; "rux-icon-signal-cellular-alt": HTMLRuxIconSignalCellularAltElement; "rux-icon-signal-cellular-connected-no-internet-0-bar": HTMLRuxIconSignalCellularConnectedNoInternet0BarElement; "rux-icon-signal-cellular-connected-no-internet-1-bar": HTMLRuxIconSignalCellularConnectedNoInternet1BarElement; "rux-icon-signal-cellular-connected-no-internet-2-bar": HTMLRuxIconSignalCellularConnectedNoInternet2BarElement; "rux-icon-signal-cellular-connected-no-internet-3-bar": HTMLRuxIconSignalCellularConnectedNoInternet3BarElement; "rux-icon-signal-cellular-connected-no-internet-4-bar": HTMLRuxIconSignalCellularConnectedNoInternet4BarElement; "rux-icon-signal-cellular-no-sim": HTMLRuxIconSignalCellularNoSimElement; "rux-icon-signal-cellular-null": HTMLRuxIconSignalCellularNullElement; "rux-icon-signal-cellular-off": HTMLRuxIconSignalCellularOffElement; "rux-icon-signal-wifi-0-bar": HTMLRuxIconSignalWifi0BarElement; "rux-icon-signal-wifi-1-bar": HTMLRuxIconSignalWifi1BarElement; "rux-icon-signal-wifi-1-bar-lock": HTMLRuxIconSignalWifi1BarLockElement; "rux-icon-signal-wifi-2-bar": HTMLRuxIconSignalWifi2BarElement; "rux-icon-signal-wifi-2-bar-lock": HTMLRuxIconSignalWifi2BarLockElement; "rux-icon-signal-wifi-3-bar": HTMLRuxIconSignalWifi3BarElement; "rux-icon-signal-wifi-3-bar-lock": HTMLRuxIconSignalWifi3BarLockElement; "rux-icon-signal-wifi-4-bar": HTMLRuxIconSignalWifi4BarElement; "rux-icon-signal-wifi-4-bar-lock": HTMLRuxIconSignalWifi4BarLockElement; "rux-icon-signal-wifi-off": HTMLRuxIconSignalWifiOffElement; "rux-icon-sim-card": HTMLRuxIconSimCardElement; "rux-icon-skip-next": HTMLRuxIconSkipNextElement; "rux-icon-skip-previous": HTMLRuxIconSkipPreviousElement; "rux-icon-slideshow": HTMLRuxIconSlideshowElement; "rux-icon-slow-motion-video": HTMLRuxIconSlowMotionVideoElement; "rux-icon-smartphone": HTMLRuxIconSmartphoneElement; "rux-icon-smoke-free": HTMLRuxIconSmokeFreeElement; "rux-icon-smoking-rooms": HTMLRuxIconSmokingRoomsElement; "rux-icon-sms": HTMLRuxIconSmsElement; "rux-icon-sms-failed": HTMLRuxIconSmsFailedElement; "rux-icon-snooze": HTMLRuxIconSnoozeElement; "rux-icon-solar": HTMLRuxIconSolarElement; "rux-icon-sort": HTMLRuxIconSortElement; "rux-icon-sort-by-alpha": HTMLRuxIconSortByAlphaElement; "rux-icon-spa": HTMLRuxIconSpaElement; "rux-icon-space-bar": HTMLRuxIconSpaceBarElement; "rux-icon-speaker": HTMLRuxIconSpeakerElement; "rux-icon-speaker-group": HTMLRuxIconSpeakerGroupElement; "rux-icon-speaker-notes": HTMLRuxIconSpeakerNotesElement; "rux-icon-speaker-notes-off": HTMLRuxIconSpeakerNotesOffElement; "rux-icon-speaker-phone": HTMLRuxIconSpeakerPhoneElement; "rux-icon-spellcheck": HTMLRuxIconSpellcheckElement; "rux-icon-star": HTMLRuxIconStarElement; "rux-icon-star-border": HTMLRuxIconStarBorderElement; "rux-icon-star-half": HTMLRuxIconStarHalfElement; "rux-icon-star-rate": HTMLRuxIconStarRateElement; "rux-icon-stars": HTMLRuxIconStarsElement; "rux-icon-stay-current-landscape": HTMLRuxIconStayCurrentLandscapeElement; "rux-icon-stay-current-portrait": HTMLRuxIconStayCurrentPortraitElement; "rux-icon-stay-primary-landscape": HTMLRuxIconStayPrimaryLandscapeElement; "rux-icon-stay-primary-portrait": HTMLRuxIconStayPrimaryPortraitElement; "rux-icon-stop": HTMLRuxIconStopElement; "rux-icon-stop-screen-share": HTMLRuxIconStopScreenShareElement; "rux-icon-storage": HTMLRuxIconStorageElement; "rux-icon-store": HTMLRuxIconStoreElement; "rux-icon-store-mall-directory": HTMLRuxIconStoreMallDirectoryElement; "rux-icon-straighten": HTMLRuxIconStraightenElement; "rux-icon-streetview": HTMLRuxIconStreetviewElement; "rux-icon-strikethrough-s": HTMLRuxIconStrikethroughSElement; "rux-icon-style": HTMLRuxIconStyleElement; "rux-icon-subdirectory-arrow-left": HTMLRuxIconSubdirectoryArrowLeftElement; "rux-icon-subdirectory-arrow-right": HTMLRuxIconSubdirectoryArrowRightElement; "rux-icon-subject": HTMLRuxIconSubjectElement; "rux-icon-subscriptions": HTMLRuxIconSubscriptionsElement; "rux-icon-subtitles": HTMLRuxIconSubtitlesElement; "rux-icon-subway": HTMLRuxIconSubwayElement; "rux-icon-supervised-user-circle": HTMLRuxIconSupervisedUserCircleElement; "rux-icon-supervisor-account": HTMLRuxIconSupervisorAccountElement; "rux-icon-surround-sound": HTMLRuxIconSurroundSoundElement; "rux-icon-swap-calls": HTMLRuxIconSwapCallsElement; "rux-icon-swap-horiz": HTMLRuxIconSwapHorizElement; "rux-icon-swap-horizontal-circle": HTMLRuxIconSwapHorizontalCircleElement; "rux-icon-swap-vert": HTMLRuxIconSwapVertElement; "rux-icon-swap-vertical-circle": HTMLRuxIconSwapVerticalCircleElement; "rux-icon-switch-camera": HTMLRuxIconSwitchCameraElement; "rux-icon-switch-video": HTMLRuxIconSwitchVideoElement; "rux-icon-sync": HTMLRuxIconSyncElement; "rux-icon-sync-disabled": HTMLRuxIconSyncDisabledElement; "rux-icon-sync-problem": HTMLRuxIconSyncProblemElement; "rux-icon-system-update": HTMLRuxIconSystemUpdateElement; "rux-icon-tab": HTMLRuxIconTabElement; "rux-icon-tab-unselected": HTMLRuxIconTabUnselectedElement; "rux-icon-table-chart": HTMLRuxIconTableChartElement; "rux-icon-tablet": HTMLRuxIconTabletElement; "rux-icon-tablet-android": HTMLRuxIconTabletAndroidElement; "rux-icon-tablet-mac": HTMLRuxIconTabletMacElement; "rux-icon-tag-faces": HTMLRuxIconTagFacesElement; "rux-icon-tap-and-play": HTMLRuxIconTapAndPlayElement; "rux-icon-terrain": HTMLRuxIconTerrainElement; "rux-icon-text-fields": HTMLRuxIconTextFieldsElement; "rux-icon-text-format": HTMLRuxIconTextFormatElement; "rux-icon-text-rotate-up": HTMLRuxIconTextRotateUpElement; "rux-icon-text-rotate-vertical": HTMLRuxIconTextRotateVerticalElement; "rux-icon-text-rotation-none": HTMLRuxIconTextRotationNoneElement; "rux-icon-textsms": HTMLRuxIconTextsmsElement; "rux-icon-texture": HTMLRuxIconTextureElement; "rux-icon-theaters": HTMLRuxIconTheatersElement; "rux-icon-thermal": HTMLRuxIconThermalElement; "rux-icon-thumb-down": HTMLRuxIconThumbDownElement; "rux-icon-thumb-down-alt": HTMLRuxIconThumbDownAltElement; "rux-icon-thumb-up": HTMLRuxIconThumbUpElement; "rux-icon-thumb-up-alt": HTMLRuxIconThumbUpAltElement; "rux-icon-thumbs-up-down": HTMLRuxIconThumbsUpDownElement; "rux-icon-time-to-leave": HTMLRuxIconTimeToLeaveElement; "rux-icon-timelapse": HTMLRuxIconTimelapseElement; "rux-icon-timeline": HTMLRuxIconTimelineElement; "rux-icon-timer": HTMLRuxIconTimerElement; "rux-icon-timer-10": HTMLRuxIconTimer10Element; "rux-icon-timer-3": HTMLRuxIconTimer3Element; "rux-icon-timer-off": HTMLRuxIconTimerOffElement; "rux-icon-title": HTMLRuxIconTitleElement; "rux-icon-toc": HTMLRuxIconTocElement; "rux-icon-today": HTMLRuxIconTodayElement; "rux-icon-toggle-off": HTMLRuxIconToggleOffElement; "rux-icon-toggle-on": HTMLRuxIconToggleOnElement; "rux-icon-toll": HTMLRuxIconTollElement; "rux-icon-tonality": HTMLRuxIconTonalityElement; "rux-icon-touch-app": HTMLRuxIconTouchAppElement; "rux-icon-toys": HTMLRuxIconToysElement; "rux-icon-track-changes": HTMLRuxIconTrackChangesElement; "rux-icon-traffic": HTMLRuxIconTrafficElement; "rux-icon-train": HTMLRuxIconTrainElement; "rux-icon-tram": HTMLRuxIconTramElement; "rux-icon-transfer-within-a-station": HTMLRuxIconTransferWithinAStationElement; "rux-icon-transform": HTMLRuxIconTransformElement; "rux-icon-transit-enterexit": HTMLRuxIconTransitEnterexitElement; "rux-icon-translate": HTMLRuxIconTranslateElement; "rux-icon-trending-down": HTMLRuxIconTrendingDownElement; "rux-icon-trending-flat": HTMLRuxIconTrendingFlatElement; "rux-icon-trending-up": HTMLRuxIconTrendingUpElement; "rux-icon-trip-origin": HTMLRuxIconTripOriginElement; "rux-icon-tune": HTMLRuxIconTuneElement; "rux-icon-turned-in": HTMLRuxIconTurnedInElement; "rux-icon-turned-in-not": HTMLRuxIconTurnedInNotElement; "rux-icon-tv": HTMLRuxIconTvElement; "rux-icon-tv-off": HTMLRuxIconTvOffElement; "rux-icon-unarchive": HTMLRuxIconUnarchiveElement; "rux-icon-undo": HTMLRuxIconUndoElement; "rux-icon-unfold-less": HTMLRuxIconUnfoldLessElement; "rux-icon-unfold-more": HTMLRuxIconUnfoldMoreElement; "rux-icon-unsubscribe": HTMLRuxIconUnsubscribeElement; "rux-icon-update": HTMLRuxIconUpdateElement; "rux-icon-usb": HTMLRuxIconUsbElement; "rux-icon-verified-user": HTMLRuxIconVerifiedUserElement; "rux-icon-vertical-align-bottom": HTMLRuxIconVerticalAlignBottomElement; "rux-icon-vertical-align-center": HTMLRuxIconVerticalAlignCenterElement; "rux-icon-vertical-align-top": HTMLRuxIconVerticalAlignTopElement; "rux-icon-vertical-split": HTMLRuxIconVerticalSplitElement; "rux-icon-vibration": HTMLRuxIconVibrationElement; "rux-icon-video-call": HTMLRuxIconVideoCallElement; "rux-icon-video-label": HTMLRuxIconVideoLabelElement; "rux-icon-video-library": HTMLRuxIconVideoLibraryElement; "rux-icon-videocam": HTMLRuxIconVideocamElement; "rux-icon-videocam-off": HTMLRuxIconVideocamOffElement; "rux-icon-videogame-asset": HTMLRuxIconVideogameAssetElement; "rux-icon-view-agenda": HTMLRuxIconViewAgendaElement; "rux-icon-view-array": HTMLRuxIconViewArrayElement; "rux-icon-view-carousel": HTMLRuxIconViewCarouselElement; "rux-icon-view-column": HTMLRuxIconViewColumnElement; "rux-icon-view-comfy": HTMLRuxIconViewComfyElement; "rux-icon-view-compact": HTMLRuxIconViewCompactElement; "rux-icon-view-day": HTMLRuxIconViewDayElement; "rux-icon-view-headline": HTMLRuxIconViewHeadlineElement; "rux-icon-view-list": HTMLRuxIconViewListElement; "rux-icon-view-module": HTMLRuxIconViewModuleElement; "rux-icon-view-quilt": HTMLRuxIconViewQuiltElement; "rux-icon-view-stream": HTMLRuxIconViewStreamElement; "rux-icon-view-week": HTMLRuxIconViewWeekElement; "rux-icon-vignette": HTMLRuxIconVignetteElement; "rux-icon-visibility": HTMLRuxIconVisibilityElement; "rux-icon-visibility-off": HTMLRuxIconVisibilityOffElement; "rux-icon-voice-chat": HTMLRuxIconVoiceChatElement; "rux-icon-voice-over-off": HTMLRuxIconVoiceOverOffElement; "rux-icon-voicemail": HTMLRuxIconVoicemailElement; "rux-icon-volume-down": HTMLRuxIconVolumeDownElement; "rux-icon-volume-mute": HTMLRuxIconVolumeMuteElement; "rux-icon-volume-off": HTMLRuxIconVolumeOffElement; "rux-icon-volume-up": HTMLRuxIconVolumeUpElement; "rux-icon-vpn-key": HTMLRuxIconVpnKeyElement; "rux-icon-vpn-lock": HTMLRuxIconVpnLockElement; "rux-icon-wallpaper": HTMLRuxIconWallpaperElement; "rux-icon-warning": HTMLRuxIconWarningElement; "rux-icon-watch": HTMLRuxIconWatchElement; "rux-icon-watch-later": HTMLRuxIconWatchLaterElement; "rux-icon-waves": HTMLRuxIconWavesElement; "rux-icon-wb-auto": HTMLRuxIconWbAutoElement; "rux-icon-wb-cloudy": HTMLRuxIconWbCloudyElement; "rux-icon-wb-incandescent": HTMLRuxIconWbIncandescentElement; "rux-icon-wb-iridescent": HTMLRuxIconWbIridescentElement; "rux-icon-wb-sunny": HTMLRuxIconWbSunnyElement; "rux-icon-wc": HTMLRuxIconWcElement; "rux-icon-web": HTMLRuxIconWebElement; "rux-icon-web-asset": HTMLRuxIconWebAssetElement; "rux-icon-weekend": HTMLRuxIconWeekendElement; "rux-icon-whatshot": HTMLRuxIconWhatshotElement; "rux-icon-where-to-vote": HTMLRuxIconWhereToVoteElement; "rux-icon-widgets": HTMLRuxIconWidgetsElement; "rux-icon-wifi": HTMLRuxIconWifiElement; "rux-icon-wifi-lock": HTMLRuxIconWifiLockElement; "rux-icon-wifi-off": HTMLRuxIconWifiOffElement; "rux-icon-wifi-tethering": HTMLRuxIconWifiTetheringElement; "rux-icon-work": HTMLRuxIconWorkElement; "rux-icon-work-off": HTMLRuxIconWorkOffElement; "rux-icon-work-outline": HTMLRuxIconWorkOutlineElement; "rux-icon-wrap-text": HTMLRuxIconWrapTextElement; "rux-icon-youtube-searched-for": HTMLRuxIconYoutubeSearchedForElement; "rux-icon-zoom-in": HTMLRuxIconZoomInElement; "rux-icon-zoom-in-map": HTMLRuxIconZoomInMapElement; "rux-icon-zoom-out": HTMLRuxIconZoomOutElement; "rux-icon-zoom-out-map": HTMLRuxIconZoomOutMapElement; "rux-indeterminate-progress": HTMLRuxIndeterminateProgressElement; "rux-input": HTMLRuxInputElement; "rux-log": HTMLRuxLogElement; "rux-menu": HTMLRuxMenuElement; "rux-menu-item": HTMLRuxMenuItemElement; "rux-menu-item-divider": HTMLRuxMenuItemDividerElement; "rux-monitoring-icon": HTMLRuxMonitoringIconElement; "rux-monitoring-progress-icon": HTMLRuxMonitoringProgressIconElement; "rux-notification": HTMLRuxNotificationElement; "rux-option": HTMLRuxOptionElement; "rux-option-group": HTMLRuxOptionGroupElement; "rux-pop-up": HTMLRuxPopUpElement; "rux-progress": HTMLRuxProgressElement; "rux-push-button": HTMLRuxPushButtonElement; "rux-radio": HTMLRuxRadioElement; "rux-radio-group": HTMLRuxRadioGroupElement; "rux-ruler": HTMLRuxRulerElement; "rux-segmented-button": HTMLRuxSegmentedButtonElement; "rux-select": HTMLRuxSelectElement; "rux-slider": HTMLRuxSliderElement; "rux-status": HTMLRuxStatusElement; "rux-switch": HTMLRuxSwitchElement; "rux-tab": HTMLRuxTabElement; "rux-tab-panel": HTMLRuxTabPanelElement; "rux-tab-panels": HTMLRuxTabPanelsElement; "rux-table": HTMLRuxTableElement; "rux-table-body": HTMLRuxTableBodyElement; "rux-table-cell": HTMLRuxTableCellElement; "rux-table-header": HTMLRuxTableHeaderElement; "rux-table-header-cell": HTMLRuxTableHeaderCellElement; "rux-table-header-row": HTMLRuxTableHeaderRowElement; "rux-table-row": HTMLRuxTableRowElement; "rux-tabs": HTMLRuxTabsElement; "rux-tag": HTMLRuxTagElement; "rux-textarea": HTMLRuxTextareaElement; "rux-time-region": HTMLRuxTimeRegionElement; "rux-timeline": HTMLRuxTimelineElement; "rux-toast": HTMLRuxToastElement; "rux-toast-stack": HTMLRuxToastStackElement; "rux-tooltip": HTMLRuxTooltipElement; "rux-track": HTMLRuxTrackElement; "rux-tree": HTMLRuxTreeElement; "rux-tree-node": HTMLRuxTreeNodeElement; } } declare namespace LocalJSX { type OneOf = { [P in K]: PropT } & { [P in `attr:${K}` | `prop:${K}`]?: never } | { [P in `attr:${K}`]: AttrT } & { [P in K | `prop:${K}`]?: never } | { [P in `prop:${K}`]: PropT } & { [P in K | `attr:${K}`]?: never }; interface RuxAccordion { /** * If present, sets a disabled state on the accordion, indicating that no part of it can be manipulated by user action. * @default false */ "disabled"?: boolean; /** * ***** toggles disallow muiltiple - default false ******** * @default false */ "disallowMultiple"?: boolean; } interface RuxAccordionItem { /** * If present, sets a disabled state on this accordion item, indicating it cannot be selected by user action. * @default false */ "disabled"?: boolean; /** * If present, sets the initial state on this accordion item to open, displaying the accordion content. * @default false */ "expanded"?: boolean; /** * Fired when an accordion-item has collapsed */ "onRuxcollapsed"?: (event: RuxAccordionItemCustomEvent) => void; /** * Fired when an accordion-item has expanded */ "onRuxexpanded"?: (event: RuxAccordionItemCustomEvent) => void; } interface RuxBreadcrumb { } interface RuxBreadcrumbItem { /** * The href property of the breadcrumb item link */ "href"?: string; } interface RuxButton { /** * Changes button style from solid to borderless by setting the rux-button--borderless class * @default false */ "borderless"?: boolean; /** * Toggles disabled attribute on the button * @default false */ "disabled"?: boolean; /** * For a [button style guide, see the Button section in Astro UXDS Guidelines](https://astrouxds.com/components/button) Displays an Astro icon matching this string. For a [full list of available icons, see the Icons section in Astro UXDS Guidelines](https://astrouxds.com/ui-components/icons-and-symbols) */ "icon"?: string; /** * Hides slotted text from the button by setting rux-button--icon-only class * @default false */ "iconOnly"?: boolean; /** * Changes button style from solid to secondary by setting the rux-button--secondary class * @default false */ "secondary"?: boolean; /** * Changes size of a button from medium to small or large by setting sizing classes rux-button--small rux-button--large */ "size"?: 'small' | 'medium' | 'large'; /** * The button type. Use 'submit' to submit native form data. * @default 'button' */ "type"?: 'submit' | 'button'; } /** * @deprecated Button Group is deprecated and will be removed in a next major release. * Instead, you should use `flex` or `grid` in combination with our spacing design tokens. */ interface RuxButtonGroup { /** * The horizontal alignment of buttons within the group * @default 'left' */ "hAlign"?: 'left' | 'center' | 'right'; } interface RuxCard { } interface RuxCheckbox { /** * Toggles checked state of a checkbox * @default false */ "checked"?: boolean; /** * Disables the checkbox via HTML disabled attribute. Checkbox takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled"?: boolean; /** * The help or explanation text */ "helpText"?: string; /** * Toggles indeterminate state of a checkbox. The indeterminate property does not exist in HTML, but can be set in JS. [HTML Checkbox & Indeterminate State](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#indeterminate) * @default false */ "indeterminate"?: boolean; /** * The checkbox label text. For HTML content, use the default slot instead. */ "label"?: string; /** * The checkbox name * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxCheckboxCustomEvent) => void; /** * Fired when the value of the input changes - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event) */ "onRuxchange"?: (event: RuxCheckboxCustomEvent) => void; /** * Fired when an element has gained focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/focus_event) */ "onRuxfocus"?: (event: RuxCheckboxCustomEvent) => void; /** * Fired when an alteration to the input's value is committed by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */ "onRuxinput"?: (event: RuxCheckboxCustomEvent) => void; /** * The checkbox value * @default '' */ "value"?: string; } interface RuxCheckboxGroup { /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Checkbox Group as invalid. * @default false */ "invalid"?: boolean; /** * The label of the checkbox group. For HTML content, use the `label` slot instead. */ "label"?: string; /** * Marks that a selection from the checkbox group is requried. * @default false */ "required"?: boolean; } interface RuxClassificationMarking { /** * Defines which classification marking will be displayed. * @default 'unclassified' */ "classification"?: Classification; /** * Allows additional text labels to be added to the marking */ "label"?: string; /** * Declares the marking as a `tag` rather than the default banner style * @default false */ "tag"?: boolean; } interface RuxClock { /** * When supplied with a valid [date string or value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#syntax) displays a timestamp labeled "AOS" next to the standard clock. */ "aos"?: string; /** * When supplied with a valid [date string or value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#syntax), sets the time and date of the clock. */ "dateIn"?: string; /** * Hides the day of the year. * @default false */ "hideDate"?: boolean; /** * Hides all of the labels. * @default false */ "hideLabels"?: boolean; /** * Hides the timezone in the main 24-hour clock. Timezone does not display on AOS/LOS. * @default false */ "hideTimezone"?: boolean; /** * When supplied with a valid [date string or value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#syntax), displays a timestamp labeled "LOS" next to the standard clock. */ "los"?: string; /** * Applies a smaller clock style. * @default false */ "small"?: boolean; /** * Prevents clock from ticking. Use with `date-in` for full control over the displayed time * @default false */ "static"?: boolean; /** * Accepts the [IANA timezone string format](https://www.iana.org/time-zones) such as `'America/Los_Angeles'` or any single-character designation for a [military timezones](https://en.wikipedia.org/wiki/List_of_military_time_zones) (`'A'` through `'Z'`, excluding `'J'`), both case-insensitive. If no value for timezone is provided, the clock will use `'UTC'`. See [`toLocaleString()` on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString#Parameters) for more details. * @default 'UTC' */ "timezone"?: string; } interface RuxContainer { } interface RuxDatetime { /** * The date time to be formatted * @default new Date() */ "date"?: Date | string; /** * Format options for day */ "day"?: 'numeric' | '2-digit'; /** * Format options for era */ "era"?: 'narrow' | 'short' | 'long'; /** * Format options for hour */ "hour"?: 'numeric' | '2-digit'; /** * Display date in 12 hour time. * @default false */ "hour12"?: boolean; /** * The locale * @default 'default' */ "locale"?: string; /** * Format options for minute */ "minute"?: 'numeric' | '2-digit'; /** * Format options for month */ "month"?: 'numeric' | '2-digit' | 'narrow' | 'short' | 'long'; /** * Format options for second */ "second"?: 'numeric' | '2-digit'; /** * Format options for Timezone */ "timeZone"?: string; /** * Format options for Timezone name */ "timeZoneName"?: 'short' | 'long'; /** * Format options for weekday */ "weekday"?: 'narrow' | 'short' | 'long'; /** * Format options for year */ "year"?: 'numeric' | '2-digit'; } interface RuxDialog { /** * Allows dialog to close when clicking off it * @default false */ "clickToClose"?: boolean; /** * Text for confirmation button * @default 'Confirm' */ "confirmText"?: string; /** * Text for close button * @default 'Cancel' */ "denyText"?: string; /** * Dialog header title */ "header"?: string; /** * Dialog body message */ "message"?: string; /** * Event that is fired when dialog closes. If dialog is closed by clicking on the default confirm or deny buttons (when no footer slot is provided), then true or false will be emitted respectively on the event.detail. */ "onRuxdialogclosed"?: (event: RuxDialogCustomEvent) => void; /** * Event that is fired when dialog opens */ "onRuxdialogopened"?: (event: RuxDialogCustomEvent) => void; /** * Shows and hides dialog * @default false */ "open"?: boolean; } interface RuxGlobalStatusBar { /** * Sets the domain of the application to be displayed in the app-meta element */ "appDomain"?: string; /** * Sets the name of the application to be displayed in the app-meta element */ "appName"?: string; /** * Declares what text will render and whether the app-state component will be shown in the app-meta slot * @default '' */ "appState"?: string; /** * Declares the color of the the app-state component background * @default 'tag1' */ "appStateColor"?: 'tag1' | 'tag2' | 'tag3' | 'tag4'; /** * Sets the version of the application to be displayed in the app-meta element */ "appVersion"?: string; /** * Reduces the height of the global status bar * @default false */ "compact"?: boolean; /** * Declares whether the menu-icon will be shown in the left-side slot * @default false */ "includeIcon"?: boolean; /** * Sets the icon to be displayed in the default rux-icon component * @default 'apps' */ "menuIcon"?: string; /** * Declares what text will render and whether the username component will be shown in the app-meta slot * @default '' */ "username"?: string; } interface RuxIcon { /** * The icon name */ "icon": string; /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'normal' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIcon360 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIcon3dRotation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIcon4k { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAcUnit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessAlarms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessTime { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessibility { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessibilityNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessible { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccessibleForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountBalance { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountBalanceWallet { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAccountCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAdb { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddAPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddAlarm { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddAlert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddPhotoAlternate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddShoppingCart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddToHomeScreen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddToPhotos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAddToQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAdjust { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatFlat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatFlatAngled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatIndividualSuite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatLegroomExtra { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatLegroomNormal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatLegroomReduced { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatReclineExtra { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirlineSeatReclineNormal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirplanemodeActive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirplanemodeInactive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirplay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAirportShuttle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarm { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarmAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarmOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlarmOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlbum { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAllInbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAllInclusive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAllOut { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAlternateEmail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAltitude { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAndroid { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAnnouncement { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntenna { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntennaOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntennaReceive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAntennaTransmit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconApps { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArchive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowBack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowBackIos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDownward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDropDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDropDownCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowDropUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowForwardIos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowRightAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArrowUpward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconArtTrack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAspectRatio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssessment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentFind { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentLate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentReturn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentReturned { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssignmentTurnedIn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssistant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAssistantPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAttachFile { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAttachMoney { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAttachment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAudiotrack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAutorenew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconAvTimer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBackspace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBackup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBallot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBarChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery20 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery50 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery60 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery80 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBattery90 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryAlert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging20 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging50 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging60 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging80 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryCharging90 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryChargingFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryStd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBatteryUnknown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBeachAccess { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBeenhere { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetooth { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothAudio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothConnected { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBluetoothSearching { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurCircular { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurLinear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBlurOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBook { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBookmark { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBookmarkBorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBookmarks { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderBottom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderColor { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderHorizontal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderInner { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderOuter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderStyle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderTop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBorderVertical { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrandingWatermark { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness4 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness6 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightness7 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessAuto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessHigh { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessLow { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrightnessMedium { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrokenImage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBrush { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBubbleChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBugReport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBuild { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBurstMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBusiness { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconBusinessCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCached { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCake { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCalendarToday { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCalendarViewDay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallEnd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMade { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMerge { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMissed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallMissedOutgoing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallReceived { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallSplit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCallToAction { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraEnhance { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraFront { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraRear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCameraRoll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCancel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCancelPresentation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCardGiftcard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCardMembership { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCardTravel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCasino { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCast { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCastConnected { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCastForEducation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCategory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCellWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCenterFocusStrong { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCenterFocusWeak { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChangeHistory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChatBubble { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChatBubbleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckBoxOutlineBlank { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCheckCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChevronLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChevronRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChildCare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChildFriendly { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconChromeReaderMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClass { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClearAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClose { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconClosedCaption { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloud { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudDone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudDownload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCloudUpload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCollections { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCollectionsBookmark { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconColorLens { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconColorize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCommute { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCompare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCompareArrows { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCompassCalibration { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconComputer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconConfirmationNumber { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContactMail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContactPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContactSupport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconContacts { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconControlCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconControlPoint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconControlPointDuplicate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCopyright { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCreate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCreateNewFolder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCreditCard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop169 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop32 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop54 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCrop75 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropDin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropFree { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropOriginal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropRotate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconCropSquare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDashboard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDataUsage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDateRange { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDehaze { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDelete { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeleteForever { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeleteOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeleteSweep { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDepartureBoard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDescription { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDesktopAccessDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDesktopMac { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDesktopWindows { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDetails { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeveloperBoard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeveloperMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeviceHub { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDeviceUnknown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDevices { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDevicesOther { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDialerSip { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDialpad { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirections { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsBike { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsBoat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsBus { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsCar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsRailway { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsRun { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsSubway { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsTransit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDirectionsWalk { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDiscFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDns { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDomain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDomainDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDoneAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDoneOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDonutLarge { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDonutSmall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDrafts { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDragHandle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDragIndicator { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDriveEta { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDuo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconDvr { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEdit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEditAttributes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEditLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEject { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEmail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEnhancedEncryption { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEqualizer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEquipment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconError { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconErrorOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEuroSymbol { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEvStation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEvent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEventAvailable { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEventBusy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconEventNote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExitToApp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExpandLess { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExpandMore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExplicit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExplore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExploreOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposure { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposureNeg1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposureNeg2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposurePlus1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposurePlus2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExposureZero { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconExtension { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFastForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFastRewind { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFastfood { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFavorite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFavoriteBorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFeaturedPlayList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFeaturedVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFeedback { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberDvr { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberManualRecord { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberPin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFiberSmartRecord { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFileCopy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter4 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter6 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter7 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter8 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter9 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilter9Plus { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterBAndW { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterCenterFocus { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterDrama { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterFrames { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterHdr { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterTiltShift { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFilterVintage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFindInPage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFindReplace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFingerprint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFirstPage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFitnessCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlag { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlashAuto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlashOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlashOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlightLand { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlightTakeoff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlip { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlipToBack { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFlipToFront { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolderOpen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolderShared { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFolderSpecial { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFontDownload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignJustify { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatAlignRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatBold { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatColorFill { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatColorReset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatColorText { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatIndentDecrease { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatIndentIncrease { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatItalic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatLineSpacing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatListBulleted { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatListNumbered { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatListNumberedRtl { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatPaint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatQuote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatShapes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatSize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatStrikethrough { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatTextdirectionLToR { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatTextdirectionRToL { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFormatUnderlined { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForum { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward10 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconForward5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFreeBreakfast { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFullscreen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFullscreenExit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconFunctions { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGTranslate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGamepad { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGames { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGavel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGesture { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGetApp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGif { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGolfCourse { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGpsFixed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGpsNotFixed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGpsOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGrade { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGradient { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGrain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGraphicEq { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGridOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGridOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGroup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGroupAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconGroupWork { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHardware { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrStrong { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHdrWeak { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHeadset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHeadsetMic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHealing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHearing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHelp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHelpOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHighQuality { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHighlight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHighlightOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHistory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHome { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHorizontalSplit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHotTub { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHotel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHourglassEmpty { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHourglassFull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHowToReg { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHowToVote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHttp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconHttps { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImageAspectRatio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImageSearch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImportContacts { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImportExport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconImportantDevices { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconIndeterminateCheckBox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInfo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInput { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertChartOutlined { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertDriveFile { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertEmoticon { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertInvitation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertLink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInsertPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInvertColors { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconInvertColorsOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconIso { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardArrowUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardBackspace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardCapslock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardHide { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardReturn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardTab { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKeyboardVoice { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconKitchen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLabel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLabelImportant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLabelOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLanguage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptopChromebook { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptopMac { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaptopWindows { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLastPage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLaunch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLayers { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLayersClear { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLeakAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLeakRemove { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLens { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLibraryAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLibraryBooks { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLibraryMusic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLineStyle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLineWeight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLinearScale { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLinkOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLinkedCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconListAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLiveHelp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLiveTv { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalActivity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalAirport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalAtm { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalBar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalCafe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalCarWash { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalConvenienceStore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalDining { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalDrink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalGasStation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalGroceryStore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalHospital { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalHotel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalLaundryService { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalLibrary { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalMall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalMovies { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalOffer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalParking { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPharmacy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPlay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPostOffice { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalPrintshop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalSee { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalShipping { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocalTaxi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationCity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLocationSearching { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLockOpen { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks1 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks2 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks4 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLooks6 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLoop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLoupe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLowPriority { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconLoyalty { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMailOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMap { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMarkunread { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMarkunreadMailbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMaximize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMeetingRoom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMemory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMenu { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMergeType { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMessage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMicNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMicOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMinimize { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMissedVideoCall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMission { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMobileFriendly { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMobileOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMobileScreenShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconModeComment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMonetizationOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoney { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoneyOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMonochromePhotos { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMood { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoodBad { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoreHoriz { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoreVert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMotorcycle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMouse { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMoveToInbox { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMovie { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMovieCreation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMovieFilter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMultilineChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMusicNote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMusicOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMusicVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconMyLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNature { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNaturePeople { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNavigateBefore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNavigateNext { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNavigation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNearMe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetcom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkCell { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkCheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkLocked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNetworkWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNewReleases { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNextWeek { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNfc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoEncryption { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoMeetingRoom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoSim { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotInterested { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotListedLocation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNoteAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationImportant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotifications { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsActive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconNotificationsPaused { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOfflineBolt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOfflinePin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOndemandVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpacity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpenInBrowser { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpenInNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOpenWith { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconOutlinedFlag { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPages { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPageview { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPalette { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanTool { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanorama { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaFishEye { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaHorizontal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaVertical { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPanoramaWideAngle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPartyMode { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPause { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPauseCircleFilled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPauseCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPausePresentation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPayload { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPayment { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPeopleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermCameraMic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermContactCalendar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermDataSetting { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermDeviceInformation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermIdentity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermMedia { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermPhoneMsg { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPermScanWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPerson { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonAddDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonPin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonPinCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPersonalVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPets { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneAndroid { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneBluetoothSpeaker { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneCallback { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneForwarded { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneInTalk { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneIphone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneLocked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoneMissed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonePaused { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelink { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkErase { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkRing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhonelinkSetup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhoto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoAlbum { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoFilter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoLibrary { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoSizeSelectActual { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoSizeSelectLarge { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPhotoSizeSelectSmall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPictureAsPdf { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPictureInPicture { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPictureInPictureAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPieChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPinDrop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlace { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayArrow { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayCircleFilled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayCircleFilledWhite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlayForWork { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlaylistAdd { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlaylistAddCheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlaylistPlay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPlusOne { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPoll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPool { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPortableWifiOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPowerInput { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPowerOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPowerSettingsNew { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPregnantWoman { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPresentToAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPrint { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPrintDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPriorityHigh { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconProcessor { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconProcessorAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPropulsionPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPublic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconPublish { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueryBuilder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQuestionAnswer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueueMusic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconQueuePlayNext { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRadio { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRadioButtonChecked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRadioButtonUnchecked { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRateReview { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReceipt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRecentActors { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRecordVoiceOver { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRedeem { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRedo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRefresh { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRelease { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemove { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveCircleOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveFromQueue { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveRedEye { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRemoveShoppingCart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRepeat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRepeatOne { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay10 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay30 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplay5 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReply { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReplyAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReport { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReportOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconReportProblem { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestaurant { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestaurantMenu { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestoreFromTrash { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRestorePage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRingVolume { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRoom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRoomService { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRotate90DegreesCc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRotateLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRotateRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRoundedCorner { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRouter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRowing { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRssFeed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconRvHookup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatellite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatelliteOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatelliteReceive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSatelliteTransmit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSave { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSaveAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScanner { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScatterPlot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSchedule { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSchool { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenLockLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenLockPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenLockRotation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenRotation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconScreenShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSdCard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSdStorage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSearch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSeat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSecurity { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSelectAll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSend { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentDissatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentSatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentSatisfiedAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentVeryDissatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSentimentVerySatisfied { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSetPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettings { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsApplications { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsBackupRestore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsBluetooth { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsBrightness { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsCell { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsEthernet { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputAntenna { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputComponent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputComposite { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputHdmi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsInputSvideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsOverscan { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsPower { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsRemote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsSystemDaydream { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSettingsVoice { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShopTwo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShoppingBasket { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShoppingCart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShortText { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShowChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShuffle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconShutterSpeed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular0Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular1Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular2Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular3Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellular4Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet0Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet1Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet2Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet3Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularConnectedNoInternet4Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularNoSim { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularNull { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalCellularOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi0Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi1Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi1BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi2Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi2BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi3Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi3BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi4Bar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifi4BarLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSignalWifiOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSimCard { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSkipNext { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSkipPrevious { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSlideshow { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSlowMotionVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmartphone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmokeFree { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmokingRooms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSmsFailed { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSnooze { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSolar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSort { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSortByAlpha { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpa { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpaceBar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeaker { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerGroup { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerNotes { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerNotesOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpeakerPhone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSpellcheck { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStar { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStarBorder { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStarHalf { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStarRate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStars { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayCurrentLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayCurrentPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayPrimaryLandscape { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStayPrimaryPortrait { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStopScreenShare { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStorage { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStoreMallDirectory { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStraighten { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStreetview { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStrikethroughS { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconStyle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubdirectoryArrowLeft { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubdirectoryArrowRight { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubject { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubscriptions { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubtitles { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSubway { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSupervisedUserCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSupervisorAccount { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSurroundSound { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapCalls { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapHoriz { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapHorizontalCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapVert { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwapVerticalCircle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwitchCamera { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSwitchVideo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSync { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSyncDisabled { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSyncProblem { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconSystemUpdate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTab { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTabUnselected { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTableChart { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTablet { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTabletAndroid { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTabletMac { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTagFaces { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTapAndPlay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTerrain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextFields { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextFormat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextRotateUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextRotateVertical { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextRotationNone { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTextsms { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTexture { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTheaters { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThermal { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbDownAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbUpAlt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconThumbsUpDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimeToLeave { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimelapse { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimeline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimer { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimer10 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimer3 { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTimerOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTitle { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToday { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToggleOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToggleOn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToll { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTonality { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTouchApp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconToys { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrackChanges { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTraffic { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrain { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTram { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTransferWithinAStation { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTransform { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTransitEnterexit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTranslate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrendingDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrendingFlat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTrendingUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTripOrigin { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTune { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTurnedIn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTurnedInNot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTv { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconTvOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnarchive { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUndo { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnfoldLess { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnfoldMore { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUnsubscribe { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUpdate { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconUsb { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerifiedUser { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalAlignBottom { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalAlignCenter { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalAlignTop { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVerticalSplit { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVibration { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideoCall { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideoLabel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideoLibrary { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideocam { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideocamOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVideogameAsset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewAgenda { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewArray { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewCarousel { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewColumn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewComfy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewCompact { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewDay { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewHeadline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewList { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewModule { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewQuilt { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewStream { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconViewWeek { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVignette { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVisibility { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVisibilityOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVoiceChat { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVoiceOverOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVoicemail { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeDown { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeMute { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVolumeUp { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVpnKey { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconVpnLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWallpaper { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWarning { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWatch { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWatchLater { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWaves { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbAuto { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbCloudy { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbIncandescent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbIridescent { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWbSunny { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWc { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWeb { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWebAsset { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWeekend { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWhatshot { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWhereToVote { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWidgets { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifi { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifiLock { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifiOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWifiTethering { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWork { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWorkOff { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWorkOutline { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconWrapText { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconYoutubeSearchedFor { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomIn { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomInMap { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomOut { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ interface RuxIconZoomOutMap { /** * The size of the icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default 'auto' */ "size"?: | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIndeterminateProgress { } interface RuxInput { /** * The inputs autocomplete attribute. In password inputs, this attribute gets set to 'off'. * @default 'off' */ "autocomplete"?: string; /** * Disables the button via HTML disabled attribute. Button takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled"?: boolean; /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Input Field as invalid. * @default false */ "invalid"?: boolean; /** * The input label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The input max attribute */ "max"?: string; /** * The input maxlength attribute */ "maxlength"?: string; /** * The input min attribute */ "min"?: string; /** * The input minlength attribute */ "minlength"?: string; /** * The input name * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxInputCustomEvent) => void; /** * Fired when the value of the input changes - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event) */ "onRuxchange"?: (event: RuxInputCustomEvent) => void; /** * Fired when an element has gained focus - [HTMLElement/focus_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/focus_event) */ "onRuxfocus"?: (event: RuxInputCustomEvent) => void; /** * Fired when an alteration to the input's value is committed by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */ "onRuxinput"?: (event: RuxInputCustomEvent) => void; /** * The input placeholder text */ "placeholder"?: string; /** * The inputs readonly attribute * @default false */ "readonly"?: boolean; /** * Sets the input as required * @default false */ "required"?: boolean; /** * Control the padding around the input field * @default 'medium' */ "size"?: 'small' | 'medium' | 'large'; /** * The input's spellcheck attribute * @default false */ "spellcheck"?: boolean; /** * The input step attribute */ "step"?: string; /** * The input type * @default 'text' */ "type"?: | 'text' | 'number' | 'email' | 'url' | 'search' | 'password' | 'date' | 'datetime-local' | 'time' | 'tel'; /** * The input value * @default '' */ "value"?: string; } /** * A Log is a tabular representation of application events and may include username, priority, equipment type, signal type, etc. As part of the [Notification System](https://www.astrouxds.com/design-guidelines/notifications), Logs provide sorting and filtering function for examining events. */ interface RuxLog { /** * An array of objects to display as log * @default [] */ "data"?: LogRow[]; /** * A string to filter the array to return only the children whose `message` property contains a case-insensitive substring match. */ "filter"?: string; /** * Accepts [IANA timezone string format](https://www.iana.org/time-zones) such as `America/Los_Angeles`. Default timezone is `UTC`. See [`toLocaleString()` on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString#Parameters) for more details. * @default 'UTC' */ "timezone"?: string; } interface RuxMenu { /** * Emits when a rux-menu-item is selected. Emits the rux-menu-item selected in the event detail. */ "onRuxmenuselected"?: (event: RuxMenuCustomEvent) => void; } interface RuxMenuItem { /** * sets the menu item as disabled * @default false */ "disabled"?: boolean; /** * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want). */ "download"?: string | undefined; /** * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered. */ "href"?: string | undefined; /** * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types). */ "rel"?: string | undefined; /** * sets the menu item as selected * @default false */ "selected"?: boolean; /** * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`. */ "target"?: string | undefined; /** * the value returned when item is selected. */ "value"?: string; } interface RuxMenuItemDivider { } interface RuxMonitoringIcon { /** * Displays an Astro icon matching this string. For a [full list of available icons, see the Icons section in Astro UXDS Guidelines](https://astrouxds.com/ui-components/icons-and-symbols) * @default 'antenna-transmit' */ "icon"?: string; /** * Displays a label below the icon */ "label": string; /** * If provided and greater than `0`, displays an outlined number badge at the bottom right of the icon. Numbers above `9999` are abbreviated to `'10K'` or `'100K'` for numbers in the thousands, `'1.5M'` for millions, `'1.5B'` for billions, and uses `'∞'` for one trillion or higher. * @default 0 */ "notifications"?: number; /** * The size of a chosen Astro icon. Can be 'extra-small', 'small', 'normal', 'large', 'auto' or any custom value ('30px', '1rem', '3.321em') * @default '2.5rem' */ "size"?: string; /** * Styles the icon according to the Astro Status colors. Valid options are the Astro statuses `critical`, `serious`, `caution`, `normal`, `standby`, and `off`. * @default 'normal' */ "status"?: Status; /** * Displays a smaller label underneath the icon label */ "sublabel"?: string; } interface RuxMonitoringProgressIcon { /** * Displays a label below the icon */ "label"?: string; /** * Sets the maximum value for the progress range. When progress is this number, it reads 100%. When it is halfway between min and max, it will read 50%. * @default 100 */ "max"?: number; /** * Sets the minimum value for the progress range. When progress is this number, it reads 0%. When it is halfway between min and max, it will read 50%. * @default 0 */ "min"?: number; /** * If provided and greater than `0`, displays an outlined number badge at the bottom right of the icon. Numbers above `9999` are abbreviated to `'10K'` or `'100K'` for numbers in the thousands, `'1.5M'` for millions, `'1.5B'` for billions, and `'∞'` for one trillion or higher. */ "notifications"?: number; /** * Displays this value as a percentage of where it lies between min and max in the center of the donut graph and styles a proportional segment of the graph. Progress can be positive or negative (the later useful for countdowns). The progress value must exist within the thresholds specified in the range property below, and must be an integer. If a non-integer value is passed in, progress will default to 0. If progress ever becomes less than min or greater than max, it will be set to equal min or max respectively. * @default 0 */ "progress"?: number; /** * Items in this Array define thresholds for changing the status style of the progress icon. For each item in the Array, the icon will be styled with the given status while the progress value is less than or equal to the Array item’s threshold and greater than the next smallest item‘s threshold. Both progress and the Array items’ threshold values can be positive or negative. If no min is specified, the component assumes the Array's first status threshold begins at 0. */ "range": Array; /** * Displays a smaller label underneath the icon label */ "sublabel"?: string; } interface RuxNotification { /** * If provided, the banner will automatically close after this amount of time. Accepts value either in milliseconds or seconds (which will be converted to milliseconds internally), between `2000` and `10000`, or `2` and `10`, respectively. Any number provided outside of the `2000`-`10000` range will be ignored in favor of the default 2000ms delay.
If `closeAfter` is not passed or if it is given an undefined or `null` value, the banner will stay open until the user closes it. */ "closeAfter"?: number; /** * Prevents the user from dismissing the notification. Hides the `actions` slot. * @default false */ "hideClose"?: boolean; /** * Message for the notification banner. * @default '' */ "message"?: string; /** * Fires when the notification banner is closed */ "onRuxclosed"?: (event: RuxNotificationCustomEvent) => void; /** * Set to true to display the Banner and begin countdown to close (if a close-after Number value is provided). * @default false */ "open"?: boolean; /** * Changes the size of the banner to a small variant. * @default false */ "small"?: boolean; /** * The background color. Possible values include 'off', 'standby', 'normal', 'caution', 'serious' and 'critical'. See [Astro UXDS Status System](https://astrouxds.com/patterns/status-system/). */ "status"?: Status; } /** * This component should be used exclusively with RuxSelect. * It's main function is to broadcast to RuxSelect when the value property changes. * RuxSelect can only listen for slot change, which won't fire in the scenario where there * might be 2 options and only their values change. Because the nodes themselves aren't added or removed, * onSlotchange doesn't fire. */ interface RuxOption { /** * Sets the option as disabled * @default false */ "disabled"?: boolean; /** * The option label */ "label": string; /** * The option value */ "value": string; } interface RuxOptionGroup { /** * The option group label */ "label"?: string; } interface RuxPopUp { /** * When provided, will close the pop-up when a single selection is made. * @default false */ "closeOnSelect"?: boolean; /** * Turns autoUpdate on or off which makes the pop-up move to stay in view based on scroll. Defaults to false. * @default false */ "disableAutoUpdate"?: boolean; /** * watches for trigger movements and replace the popup if movement is detected. * @default false */ "enableAnimationFrame"?: boolean; /** * Emits when the pop up has closed. */ "onRuxpopupclosed"?: (event: RuxPopUpCustomEvent) => void; /** * Emits when the pop up has opened */ "onRuxpopupopened"?: (event: RuxPopUpCustomEvent) => void; /** * Determines if the pop up is open or closed * @default false */ "open"?: boolean; /** * The placement of the pop up relative to it's slotted trigger element. Defaults to auto. * @default 'auto' */ "placement"?: ExtendedPlacement; /** * The position strategy of the popup, either absolute or fixed. * @default 'absolute' */ "strategy"?: 'absolute' | 'fixed'; } interface RuxProgress { /** * Hides the progress label * @default false */ "hideLabel"?: boolean; /** * For progress bars where progress bars have a maximum value greater or less than 100 * @default 100 */ "max"?: number; /** * Current progress value between 0 and 100 (or the max, if defined below). * @default 0 */ "value"?: number; } interface RuxPushButton { /** * Checks the push button via HTML `checked` attribute. Push button takes on a distinct "enabled" or "selected" visual state. * @default false */ "checked"?: boolean; /** * Disables the push button via HTML `disabled` attribute. Button takes on a distinct disabled visual state. Cursor uses the `not-allowed` system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled"?: boolean; /** * For a [button style guide, see the Button section in Astro UXDS Guidelines](https://astrouxds.com/components/button) Displays an Astro icon matching this string. For a [full list of available icons, see the Icons section in Astro UXDS Guidelines](https://astrouxds.com/ui-components/icons-and-symbols) */ "icon"?: string; /** * Hides slotted text from the button by setting rux-button--icon-only class * @default false */ "iconOnly"?: boolean; /** * The label of the push button. * @default '' */ "label"?: string; /** * The name of the push button. * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxPushButtonCustomEvent) => void; /** * Fired when an alteration to the input's value is committed by the user and emits the value on the event.detail - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */ "onRuxchange"?: (event: RuxPushButtonCustomEvent) => void; /** * Changes size of a push button from medium to small or large by setting sizing classes rux-button--small rux-button--large */ "size"?: 'small' | 'medium' | 'large'; /** * The value of the push button. * @default '' */ "value"?: string; } interface RuxRadio { /** * Toggles checked state of a radio * @default false */ "checked"?: boolean; /** * Disables the radio via HTML disabled attribute. Radio takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled"?: boolean; /** * The radio label text. For HTML content, use the default slot instead. */ "label"?: string; /** * The radio name * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxRadioCustomEvent) => void; /** * The radio value * @default '' */ "value"?: string; } interface RuxRadioGroup { /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Radio Group as invalid. * @default false */ "invalid"?: boolean; /** * The label of the radio group. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The name of the radio group - submitted with form data. Must match the name of the radios in the group. * @default '' */ "name"?: string; /** * Fired when the value of the input changes and emits that value on the event.detail. - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event) */ "onRuxchange"?: (event: RuxRadioGroupCustomEvent) => void; /** * Marks that a selection from the radio-group is requried. * @default false */ "required"?: boolean; /** * The value of the current selected radio in the group. Changing this will also mark that radio as checked in the UI. */ "value"?: any | null; } interface RuxRuler { /** * Display the day (MM/DD) at 00:00. Only works when Timeline interval is set to 'hour' or 'minutes'. * @deprecated This property is deprecated and will be removed in the next major release. Please use the `show-secondary-ruler` property on the rux-timeline component instead. * @default false */ "showStartOfDay"?: boolean | undefined; } interface RuxSegmentedButton { /** * Items in this Array are the individual button segments. * @default [] */ "data"?: SegmentedButton[]; /** * Sets the disabled attribute. * @default false */ "disabled"?: boolean; /** * Fires when the value property has changed and emits that value on the event.detail. */ "onRuxchange"?: (event: RuxSegmentedButtonCustomEvent) => void; /** * When passed in on load, this selects the first button segment with a matching label. When the selected segment changes, this property updates with the currently selected value, which reflects back to the component attribute. If no button segment label matches this string, then no segment is selected. This value takes priority over setting selected boolean property on the items in the data array. * @default '' */ "selected"?: string; /** * Changes size of segmented button from small to medium or large. */ "size"?: 'small' | 'medium' | 'large'; } interface RuxSelect { /** * Disables the select menu via HTML disabled attribute. Select menu takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled"?: boolean; /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * Styles the select menu as a inline, borderless variant. * @default false */ "inline"?: boolean; /** * Id for the Select Input */ "inputId"?: string; /** * Presentational only. Renders the Select Menu as invalid. * @default false */ "invalid"?: boolean; /** * The select label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * Id for the Label */ "labelId"?: string; /** * Enables multiselect * @default false */ "multiple"?: boolean; /** * Sets the Name of the Input Element * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxSelectCustomEvent) => void; /** * Event Emitted when the Value of the Select is Changed */ "onRuxchange"?: (event: RuxSelectCustomEvent) => void; /** * Sets the field as required * @default false */ "required"?: boolean; /** * The size of rux-select * @default 'medium' */ "size"?: 'small' | 'medium' | 'large'; /** * The value of the selected option. If multiple is true, this is an array. */ "value"?: string | string[]; } interface RuxSlider { /** * Shows tick marks and labels in the order provided and aligns evenly based on the length. * @default [] */ "axisLabels"?: string[]; /** * Determines if the slider is disabled. * @default false */ "disabled"?: boolean; /** * The validation error text */ "errorText"?: string; /** * The help or explanation text */ "helpText"?: string; /** * The slider label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * Max value of slider. * @default 100 */ "max"?: number; /** * Min value of the slider. * @default 0 */ "min"?: number; /** * If present, creates a dual-range slider by adding a second thumb. */ "minVal"?: number; /** * Name of the Input Field for Form Submission * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxSliderCustomEvent) => void; /** * Fired when the element's value is altered by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */ "onRuxchange"?: (event: RuxSliderCustomEvent) => void; /** * Fired when the value of the input changes - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event) */ "onRuxinput"?: (event: RuxSliderCustomEvent) => void; /** * Step amount of slider value. * @default 1 */ "step"?: number; /** * In a dual-range slider, disables thumb swapping. * @default false */ "strict"?: boolean; /** * Hides labels and only shows tick marks if axis-labels is provided. * @default false */ "ticksOnly"?: boolean; /** * Current value of the slider. The default value is halfway between the specified minimum and maximum. - [HTMLElement/input_type_range>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range) In dual-range, this value should be higher than the min-val. * @default (this.max! - this.min!) / 2 + this.min! */ "value"?: number; } interface RuxStatus { /** * Sets the status symbol, valid options are critical, serious, caution, normal, standby and off * @default 'normal' */ "status"?: Status; } interface RuxSwitch { /** * Toggles checked state of a switch * @default false */ "checked"?: boolean; /** * Disables the switch via HTML disabled attribute. Switch takes on a distinct visual state. Cursor uses the not-allowed system replacement and all keyboard and mouse events are ignored. * @default false */ "disabled"?: boolean; /** * The switch label. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The switch name * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxSwitchCustomEvent) => void; /** * Fired when the value of the input changes and emits that value on the event.detail. - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event) */ "onRuxchange"?: (event: RuxSwitchCustomEvent) => void; /** * Fired when an alteration to the input's value is committed by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */ "onRuxinput"?: (event: RuxSwitchCustomEvent) => void; /** * The switch value * @default '' */ "value"?: string; } interface RuxTab { /** * If present, sets a disabled state on this tab item, indicating it cannot be selected by user action. * @default false */ "disabled"?: boolean; /** * Fires when a tab is selected. */ "onRuxtabselected"?: (event: RuxTabCustomEvent) => void; /** * If present, overrides which tab is selected on load / mount. By default, the first item is selected. * @default false */ "selected"?: boolean; /** * If passed or set to true, displays the tabs in a smaller style, suitable for limited-space uses. * @default false */ "small"?: boolean; } interface RuxTabPanel { } interface RuxTabPanels { /** * Emits a list of the Tab Panels on the event.detail which have been passed in */ "onRuxregisterpanels"?: (event: RuxTabPanelsCustomEvent) => void; } interface RuxTable { } interface RuxTableBody { } interface RuxTableCell { } interface RuxTableHeader { } interface RuxTableHeaderCell { } interface RuxTableHeaderRow { } interface RuxTableRow { /** * Changes the background color of the row. Can be applied to multiple rows at once. * @default false */ "selected"?: boolean; } interface RuxTabs { /** * Changes the style of the tabs and decreases their overall size * @default false */ "compact"?: boolean; /** * Fires whenever a new tab is selected, and emits the selected tab on the event.detail. */ "onRuxselected"?: (event: RuxTabsCustomEvent) => void; /** * If passed or set to true, displays the tabs in a smaller style, suitable for limited-space uses. */ "small"?: boolean; } interface RuxTag { /** * Used to display a status of pass, fail, or unknown. If no status is provided or the provided status is not an accepted status type, the default is unknown. * @default 'unknown' */ "status"?: StatusTags; } interface RuxTextarea { /** * Sets the input as disabled * @default false */ "disabled"?: boolean; /** * The validation error text */ "errorText"?: string; /** * The or explanation text */ "helpText"?: string; /** * Presentational only. Renders the Textarea as invalid. * @default false */ "invalid"?: boolean; /** * The textarea label text. For HTML content, use the `label` slot instead. */ "label"?: string; /** * The input maxLength attribute */ "maxLength"?: string; /** * The input minLength attribute */ "minLength"?: string; /** * The input name * @default '' */ "name"?: string; /** * Fired when an element has lost focus - [HTMLElement/blur_event](https://developer.mozilla.org/en-US/docs/Web/API/Element/blur_event) */ "onRuxblur"?: (event: RuxTextareaCustomEvent) => void; /** * Fired when the value of the input changes - [HTMLElement/input_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event) */ "onRuxchange"?: (event: RuxTextareaCustomEvent) => void; /** * Fired when an alteration to the input's value is committed by the user - [HTMLElement/change_event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) */ "onRuxinput"?: (event: RuxTextareaCustomEvent) => void; /** * The textarea placeholder text */ "placeholder"?: string; /** * The textareas readonly attribute * @default false */ "readonly"?: boolean; /** * Sets the input as required * @default false */ "required"?: boolean; /** * The input rows attribute */ "rows"?: number; /** * Styles the input element size between small, medium and large. The default styling is medium. */ "size"?: 'small' | 'medium' | 'large'; /** * The input value * @default '' */ "value"?: string; } interface RuxTimeRegion { /** * The end date. Must be an ISO string "2021-02-02T05:00:00Z" * @default '' */ "end"?: string; /** * Optionally hide the bottom right timestamp. * @default false */ "hideTimestamp"?: boolean; /** * Visually indicates a partial time regions. Partial time regions are time regions that start or end outside of the current range of the timeline. * @default 'none' */ "partial"?: 'none' | 'start' | 'end' | 'ongoing'; /** * Visually displays the selected state * @default false */ "selected"?: boolean; /** * The start date. Must be an ISO string "2021-02-02T05:00:00Z". * @default '' */ "start"?: string; /** * Short hand attribute for displaying a Status icon and appropriate border color. */ "status"?: Status; } interface RuxTimeline { /** * The timeline's end date. Must be an ISO string "2021-02-02T05:00:00Z" * @default '' */ "end"?: string; /** * Visually marks past time as played in each track * @default false */ "hasPlayedIndicator"?: boolean; /** * Hides the J-Day display when show-secondary-ruler is true. * @default false */ "hideJDay"?: boolean; /** * The timeline's date time interval * @default 'hour' */ "interval"?: 'month' | 'week' | 'hour' | 'day' | 'minute'; /** * The timeline's playhead date time. Must be an ISO string "2021-02-02T05:00:00Z" */ "playhead"?: string; /** * Controls the position of the ruler. Either top, bottom or both. * @default 'both' */ "rulerPosition"?: | 'top' | 'bottom' | 'both'; /** * Controls the display of grid lines * @default false */ "showGrid"?: boolean; /** * Controls whether or not the attached rux-ruler displays the secondary date portion. * @default false */ "showSecondaryRuler"?: boolean; /** * The timeline's start date. Must be an ISO string "2021-02-02T05:00:00Z" * @default '' */ "start"?: string; /** * Controls the timezone that the timeline is localized to. Must be an IANA time zone name ("America/New_York") or an offset string. * @default 'UTC' */ "timezone"?: string; /** * The timeline's zoom level. * @default 1 */ "zoom"?: number; } interface RuxToast { /** * If provided, the toast will automatically close after this amount of time. Accepts value either in milliseconds or seconds (which will be converted to milliseconds internally), between `2000` and `10000`, or `2` and `10`, respectively. Any number provided outside of the `2000`-`10000` range will be ignored in favor of the default 2000ms delay.
If `closeAfter` is not passed or if it is given an undefined or `null` value, the toast will stay open until the user closes it. */ "closeAfter"?: number; /** * Prevents the user from dismissing the notification. Hides the close icon. * @default false */ "hideClose"?: boolean; /** * Message for the toast. * @default '' */ "message"?: string; /** * Fires when a toast is closed */ "onRuxtoastclosed"?: (event: RuxToastCustomEvent) => void; /** * Fires when a toast is opened */ "onRuxtoastopen"?: (event: RuxToastCustomEvent) => void; /** * Allows for a status to be assigned to the toast. */ "status"?: Status1; } interface RuxToastStack { /** * position of toast stack in viewport * @default 'top-right' */ "position"?: ToastStackPosition; } interface RuxTooltip { /** * How long it takes the tooltip to appear in milliseconds, default = 800, Overrides the css custom property --delay. * @default 800 */ "delay"?: number; /** * Turns disableAutoUpdate on or off which makes the tooltip move to stay in view based on scroll. Defaults to false. * @default false */ "disableAutoUpdate"?: boolean; /** * The tooltip's content. * @default '' */ "message"?: string; /** * Pixel offset from trigger, default = 8 * @default 8 */ "offset"?: number; /** * Emits when the tooltip has closed. */ "onRuxtooltipclosed"?: (event: RuxTooltipCustomEvent) => void; /** * Emits when the tooltip has opened */ "onRuxtooltipopened"?: (event: RuxTooltipCustomEvent) => void; /** * Whether or not the tooltip is open * @default false */ "open"?: boolean; /** * The placement of the tooltip relative to it's slotted trigger element. Defaults to auto. * @default 'auto' */ "placement"?: ExtendedPlacement; /** * The position strategy of the tooltip, either absolute or fixed. * @default 'absolute' */ "strategy"?: 'absolute' | 'fixed'; } interface RuxTrack { /** * The playhead of rux-track. */ "playhead"?: any; } interface RuxTree { } interface RuxTreeNode { /** * Sets the expanded state * @default false */ "expanded"?: boolean; /** * Fires when the user collapses a tree node and emits the node's id on the event.detail. */ "onRuxtreenodecollapsed"?: (event: RuxTreeNodeCustomEvent) => void; /** * Fires when the user expands a tree node and emits the node's id on the event.detail. */ "onRuxtreenodeexpanded"?: (event: RuxTreeNodeCustomEvent) => void; /** * Fires when the user selects a tree node and emits the node's id on the event.detail. */ "onRuxtreenodeselected"?: (event: RuxTreeNodeCustomEvent) => void; /** * Sets the selected state * @default false */ "selected"?: boolean; } interface RuxAccordionAttributes { "disabled": boolean; "disallowMultiple": boolean; } interface RuxAccordionItemAttributes { "expanded": boolean; "disabled": boolean; } interface RuxBreadcrumbItemAttributes { "href": string; } interface RuxButtonAttributes { "icon": string; "iconOnly": boolean; "secondary": boolean; "disabled": boolean; "borderless": boolean; "size": 'small' | 'medium' | 'large'; "type": 'submit' | 'button'; } interface RuxButtonGroupAttributes { "hAlign": 'left' | 'center' | 'right'; } interface RuxCheckboxAttributes { "helpText": string; "name": string; "value": string; "label": string; "checked": boolean; "indeterminate": boolean; "disabled": boolean; } interface RuxCheckboxGroupAttributes { "label": string; "helpText": string; "errorText": string; "invalid": boolean; "required": boolean; } interface RuxClassificationMarkingAttributes { "classification": Classification; "label": string; "tag": boolean; } interface RuxClockAttributes { "aos": string; "static": boolean; "los": string; "timezone": string; "hideTimezone": boolean; "hideDate": boolean; "hideLabels": boolean; "dateIn": string; "small": boolean; } interface RuxDatetimeAttributes { "date": Date | string; "locale": string; "weekday": 'narrow' | 'short' | 'long'; "era": 'narrow' | 'short' | 'long'; "year": 'numeric' | '2-digit'; "month": 'numeric' | '2-digit' | 'narrow' | 'short' | 'long'; "day": 'numeric' | '2-digit'; "hour": 'numeric' | '2-digit'; "minute": 'numeric' | '2-digit'; "second": 'numeric' | '2-digit'; "timeZoneName": 'short' | 'long'; "timeZone": string; "hour12": boolean; } interface RuxDialogAttributes { "open": boolean; "message": string; "header": string; "confirmText": string; "denyText": string; "clickToClose": boolean; } interface RuxGlobalStatusBarAttributes { "includeIcon": boolean; "appState": string; "appStateColor": 'tag1' | 'tag2' | 'tag3' | 'tag4'; "username": string; "appDomain": string; "appName": string; "appVersion": string; "menuIcon": string; "compact": boolean; } interface RuxIconAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; "icon": string; } interface RuxIcon360Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIcon3dRotationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIcon4kAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAcUnitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccessAlarmsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccessTimeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccessibilityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccessibilityNewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccessibleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccessibleForwardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccountBalanceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccountBalanceWalletAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccountBoxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAccountCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAdbAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddAPhotoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddAlarmAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddAlertAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddBoxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddCircleOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddCommentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddLocationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddPhotoAlternateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddShoppingCartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddToHomeScreenAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddToPhotosAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAddToQueueAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAdjustAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatFlatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatFlatAngledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatIndividualSuiteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatLegroomExtraAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatLegroomNormalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatLegroomReducedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatReclineExtraAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirlineSeatReclineNormalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirplanemodeActiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirplanemodeInactiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirplayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAirportShuttleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAlarmAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAlarmAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAlarmOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAlarmOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAlbumAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAllInboxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAllInclusiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAllOutAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAlternateEmailAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAltitudeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAndroidAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAnnouncementAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAntennaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAntennaOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAntennaReceiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAntennaTransmitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAppsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArchiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowBackAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowBackIosAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowDownwardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowDropDownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowDropDownCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowDropUpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowForwardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowForwardIosAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowLeftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowRightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowRightAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArrowUpwardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconArtTrackAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAspectRatioAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssessmentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssignmentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssignmentFindAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssignmentLateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssignmentReturnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssignmentReturnedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssignmentTurnedInAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssistantAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAssistantPhotoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAttachFileAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAttachMoneyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAttachmentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAudiotrackAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAutorenewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconAvTimerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBackspaceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBackupAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBallotAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBarChartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBattery20Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBattery30Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBattery50Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBattery60Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBattery80Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBattery90Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryAlertAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryCharging20Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryCharging30Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryCharging50Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryCharging60Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryCharging80Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryCharging90Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryChargingFullAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryFullAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryStdAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBatteryUnknownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBeachAccessAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBeenhereAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBlockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBluetoothAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBluetoothAudioAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBluetoothConnectedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBluetoothDisabledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBluetoothSearchingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBlurCircularAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBlurLinearAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBlurOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBlurOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBookAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBookmarkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBookmarkBorderAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBookmarksAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderAllAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderBottomAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderClearAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderColorAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderHorizontalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderInnerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderLeftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderOuterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderRightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderStyleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderTopAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBorderVerticalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrandingWatermarkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightness1Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightness2Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightness3Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightness4Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightness5Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightness6Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightness7Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightnessAutoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightnessHighAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightnessLowAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrightnessMediumAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrokenImageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBrushAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBubbleChartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBugReportAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBuildAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBurstModeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBusinessAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconBusinessCenterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCachedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCakeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCalendarTodayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCalendarViewDayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallEndAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallMadeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallMergeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallMissedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallMissedOutgoingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallReceivedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallSplitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCallToActionAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCameraAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCameraAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCameraEnhanceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCameraFrontAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCameraRearAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCameraRollAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCancelAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCancelPresentationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCardGiftcardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCardMembershipAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCardTravelAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCasinoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCastAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCastConnectedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCastForEducationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCategoryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCellWifiAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCenterFocusStrongAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCenterFocusWeakAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChangeHistoryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChatBubbleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChatBubbleOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCheckAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCheckBoxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCheckBoxOutlineBlankAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCheckCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCheckCircleOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChevronLeftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChevronRightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChildCareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChildFriendlyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconChromeReaderModeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconClassAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconClearAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconClearAllAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconClosedCaptionAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloudAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloudCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloudDoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloudDownloadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloudOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloudQueueAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCloudUploadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCodeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCollectionsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCollectionsBookmarkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconColorLensAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconColorizeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCommentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCommuteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCompareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCompareArrowsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCompassCalibrationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconComputerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconConfirmationNumberAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconContactMailAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconContactPhoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconContactSupportAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconContactsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconControlCameraAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconControlPointAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconControlPointDuplicateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCopyrightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCreateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCreateNewFolderAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCreditCardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCrop169Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCrop32Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCrop54Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCrop75Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropDinAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropFreeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropLandscapeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropOriginalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropPortraitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropRotateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconCropSquareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDashboardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDataUsageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDateRangeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDehazeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeleteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeleteForeverAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeleteOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeleteSweepAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDepartureBoardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDescriptionAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDesktopAccessDisabledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDesktopMacAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDesktopWindowsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDetailsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeveloperBoardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeveloperModeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeviceHubAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDeviceUnknownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDevicesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDevicesOtherAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDialerSipAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDialpadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsBikeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsBoatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsBusAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsCarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsRailwayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsRunAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsSubwayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsTransitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDirectionsWalkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDiscFullAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDnsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDomainAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDomainDisabledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDoneAllAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDoneOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDonutLargeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDonutSmallAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDraftsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDragHandleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDragIndicatorAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDriveEtaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDuoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconDvrAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEditAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEditAttributesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEditLocationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEjectAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEmailAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEnhancedEncryptionAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEqualizerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEquipmentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconErrorAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconErrorOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEuroSymbolAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEvStationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEventAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEventAvailableAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEventBusyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconEventNoteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExitToAppAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExpandLessAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExpandMoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExplicitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExploreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExploreOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExposureAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExposureNeg1Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExposureNeg2Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExposurePlus1Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExposurePlus2Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExposureZeroAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconExtensionAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFaceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFastForwardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFastRewindAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFastfoodAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFavoriteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFavoriteBorderAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFeaturedPlayListAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFeaturedVideoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFeedbackAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFiberDvrAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFiberManualRecordAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFiberNewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFiberPinAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFiberSmartRecordAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFileCopyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter1Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter2Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter3Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter4Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter5Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter6Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter7Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter8Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter9Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilter9PlusAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterBAndWAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterCenterFocusAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterDramaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterFramesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterHdrAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterListAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterNoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterTiltShiftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFilterVintageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFindInPageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFindReplaceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFingerprintAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFirstPageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFitnessCenterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlagAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlashAutoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlashOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlashOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlightLandAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlightTakeoffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlipAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlipToBackAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFlipToFrontAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFolderAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFolderOpenAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFolderSharedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFolderSpecialAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFontDownloadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatAlignCenterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatAlignJustifyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatAlignLeftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatAlignRightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatBoldAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatClearAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatColorFillAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatColorResetAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatColorTextAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatIndentDecreaseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatIndentIncreaseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatItalicAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatLineSpacingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatListBulletedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatListNumberedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatListNumberedRtlAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatPaintAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatQuoteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatShapesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatSizeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatStrikethroughAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatTextdirectionLToRAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatTextdirectionRToLAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFormatUnderlinedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconForumAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconForwardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconForward10Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconForward30Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconForward5Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFreeBreakfastAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFullscreenAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFullscreenExitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconFunctionsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGTranslateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGamepadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGamesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGavelAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGestureAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGetAppAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGifAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGolfCourseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGpsFixedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGpsNotFixedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGpsOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGradeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGradientAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGrainAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGraphicEqAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGridOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGridOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGroupAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGroupAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconGroupWorkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHardwareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHdAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHdrOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHdrOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHdrStrongAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHdrWeakAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHeadsetAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHeadsetMicAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHealingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHearingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHelpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHelpOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHighQualityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHighlightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHighlightOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHistoryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHomeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHorizontalSplitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHotTubAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHotelAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHourglassEmptyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHourglassFullAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHowToRegAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHowToVoteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHttpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconHttpsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconImageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconImageAspectRatioAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconImageSearchAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconImportContactsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconImportExportAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconImportantDevicesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInboxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconIndeterminateCheckBoxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInfoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInputAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertChartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertChartOutlinedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertCommentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertDriveFileAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertEmoticonAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertInvitationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertLinkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInsertPhotoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInvertColorsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconInvertColorsOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconIsoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardArrowDownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardArrowLeftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardArrowRightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardArrowUpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardBackspaceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardCapslockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardHideAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardReturnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardTabAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKeyboardVoiceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconKitchenAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLabelAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLabelImportantAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLabelOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLandscapeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLanguageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLaptopAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLaptopChromebookAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLaptopMacAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLaptopWindowsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLastPageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLaunchAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLayersAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLayersClearAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLeakAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLeakRemoveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLensAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLibraryAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLibraryBooksAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLibraryMusicAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLineStyleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLineWeightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLinearScaleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLinkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLinkOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLinkedCameraAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconListAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconListAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLiveHelpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLiveTvAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalActivityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalAirportAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalAtmAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalBarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalCafeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalCarWashAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalConvenienceStoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalDiningAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalDrinkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalGasStationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalGroceryStoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalHospitalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalHotelAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalLaundryServiceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalLibraryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalMallAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalMoviesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalOfferAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalParkingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalPharmacyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalPhoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalPlayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalPostOfficeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalPrintshopAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalSeeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalShippingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocalTaxiAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocationCityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocationDisabledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocationOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocationOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLocationSearchingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLockOpenAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLooksAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLooks1Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLooks2Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLooks3Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLooks4Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLooks5Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLooks6Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLoopAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLoupeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLowPriorityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconLoyaltyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMailAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMailOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMapAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMarkunreadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMarkunreadMailboxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMaximizeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMeetingRoomAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMemoryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMenuAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMergeTypeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMessageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMicAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMicNoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMicOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMinimizeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMissedVideoCallAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMissionAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMmsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMobileFriendlyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMobileOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMobileScreenShareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconModeCommentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMonetizationOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoneyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoneyOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMonochromePhotosAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoodAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoodBadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoreHorizAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoreVertAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMotorcycleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMouseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMoveToInboxAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMovieAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMovieCreationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMovieFilterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMultilineChartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMusicNoteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMusicOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMusicVideoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconMyLocationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNatureAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNaturePeopleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNavigateBeforeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNavigateNextAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNavigationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNearMeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNetcomAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNetworkCellAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNetworkCheckAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNetworkLockedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNetworkWifiAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNewReleasesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNextWeekAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNfcAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNoEncryptionAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNoMeetingRoomAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNoSimAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotInterestedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotListedLocationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNoteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNoteAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotificationImportantAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotificationsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotificationsActiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotificationsNoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotificationsOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconNotificationsPausedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOfflineBoltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOfflinePinAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOndemandVideoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOpacityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOpenInBrowserAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOpenInNewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOpenWithAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconOutlinedFlagAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPagesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPageviewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPaletteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPanToolAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPanoramaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPanoramaFishEyeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPanoramaHorizontalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPanoramaVerticalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPanoramaWideAngleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPartyModeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPauseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPauseCircleFilledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPauseCircleOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPausePresentationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPayloadAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPaymentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPeopleOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermCameraMicAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermContactCalendarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermDataSettingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermDeviceInformationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermIdentityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermMediaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermPhoneMsgAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPermScanWifiAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPersonAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPersonAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPersonAddDisabledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPersonOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPersonPinAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPersonPinCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPersonalVideoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPetsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneAndroidAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneBluetoothSpeakerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneCallbackAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneForwardedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneInTalkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneIphoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneLockedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhoneMissedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhonePausedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhonelinkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhonelinkEraseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhonelinkLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhonelinkOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhonelinkRingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhonelinkSetupAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoAlbumAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoCameraAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoFilterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoLibraryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoSizeSelectActualAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoSizeSelectLargeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPhotoSizeSelectSmallAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPictureAsPdfAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPictureInPictureAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPictureInPictureAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPieChartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPinDropAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlaceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlayArrowAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlayCircleFilledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlayCircleFilledWhiteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlayCircleOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlayForWorkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlaylistAddAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlaylistAddCheckAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlaylistPlayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPlusOneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPollAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPoolAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPortableWifiOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPortraitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPowerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPowerInputAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPowerOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPowerSettingsNewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPregnantWomanAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPresentToAllAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPrintAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPrintDisabledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPriorityHighAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconProcessorAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconProcessorAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPropulsionPowerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPublicAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconPublishAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconQueryBuilderAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconQuestionAnswerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconQueueAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconQueueMusicAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconQueuePlayNextAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRadioAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRadioButtonCheckedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRadioButtonUncheckedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRateReviewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReceiptAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRecentActorsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRecordVoiceOverAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRedeemAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRedoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRefreshAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReleaseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRemoveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRemoveCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRemoveCircleOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRemoveFromQueueAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRemoveRedEyeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRemoveShoppingCartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReorderAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRepeatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRepeatOneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReplayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReplay10Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReplay30Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReplay5Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReplyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReplyAllAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReportAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReportOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconReportProblemAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRestaurantAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRestaurantMenuAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRestoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRestoreFromTrashAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRestorePageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRingVolumeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRoomAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRoomServiceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRotate90DegreesCcAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRotateLeftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRotateRightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRoundedCornerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRouterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRowingAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRssFeedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconRvHookupAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSatelliteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSatelliteOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSatelliteReceiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSatelliteTransmitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSaveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSaveAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScannerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScatterPlotAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScheduleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSchoolAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScreenLockLandscapeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScreenLockPortraitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScreenLockRotationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScreenRotationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconScreenShareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSdCardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSdStorageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSearchAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSeatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSecurityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSelectAllAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSendAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSentimentDissatisfiedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSentimentSatisfiedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSentimentSatisfiedAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSentimentVeryDissatisfiedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSentimentVerySatisfiedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSetPowerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsApplicationsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsBackupRestoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsBluetoothAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsBrightnessAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsCellAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsEthernetAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsInputAntennaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsInputComponentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsInputCompositeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsInputHdmiAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsInputSvideoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsOverscanAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsPhoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsPowerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsRemoteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsSystemDaydreamAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSettingsVoiceAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShopAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShopTwoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShoppingBasketAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShoppingCartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShortTextAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShowChartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShuffleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconShutterSpeedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellular0BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellular1BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellular2BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellular3BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellular4BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularConnectedNoInternet0BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularConnectedNoInternet1BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularConnectedNoInternet2BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularConnectedNoInternet3BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularConnectedNoInternet4BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularNoSimAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularNullAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalCellularOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi0BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi1BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi1BarLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi2BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi2BarLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi3BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi3BarLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi4BarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifi4BarLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSignalWifiOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSimCardAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSkipNextAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSkipPreviousAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSlideshowAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSlowMotionVideoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSmartphoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSmokeFreeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSmokingRoomsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSmsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSmsFailedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSnoozeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSolarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSortAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSortByAlphaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpaceBarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpeakerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpeakerGroupAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpeakerNotesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpeakerNotesOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpeakerPhoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSpellcheckAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStarAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStarBorderAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStarHalfAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStarRateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStarsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStayCurrentLandscapeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStayCurrentPortraitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStayPrimaryLandscapeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStayPrimaryPortraitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStopAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStopScreenShareAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStorageAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStoreMallDirectoryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStraightenAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStreetviewAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStrikethroughSAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconStyleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSubdirectoryArrowLeftAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSubdirectoryArrowRightAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSubjectAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSubscriptionsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSubtitlesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSubwayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSupervisedUserCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSupervisorAccountAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSurroundSoundAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSwapCallsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSwapHorizAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSwapHorizontalCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSwapVertAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSwapVerticalCircleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSwitchCameraAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSwitchVideoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSyncAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSyncDisabledAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSyncProblemAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconSystemUpdateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTabAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTabUnselectedAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTableChartAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTabletAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTabletAndroidAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTabletMacAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTagFacesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTapAndPlayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTerrainAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTextFieldsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTextFormatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTextRotateUpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTextRotateVerticalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTextRotationNoneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTextsmsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTextureAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTheatersAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconThermalAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconThumbDownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconThumbDownAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconThumbUpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconThumbUpAltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconThumbsUpDownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTimeToLeaveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTimelapseAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTimelineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTimerAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTimer10Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTimer3Attributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTimerOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTitleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTocAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTodayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconToggleOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconToggleOnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTollAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTonalityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTouchAppAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconToysAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTrackChangesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTrafficAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTrainAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTramAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTransferWithinAStationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTransformAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTransitEnterexitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTranslateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTrendingDownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTrendingFlatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTrendingUpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTripOriginAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTuneAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTurnedInAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTurnedInNotAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTvAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconTvOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconUnarchiveAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconUndoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconUnfoldLessAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconUnfoldMoreAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconUnsubscribeAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconUpdateAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconUsbAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVerifiedUserAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVerticalAlignBottomAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVerticalAlignCenterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVerticalAlignTopAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVerticalSplitAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVibrationAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVideoCallAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVideoLabelAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVideoLibraryAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVideocamAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVideocamOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVideogameAssetAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewAgendaAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewArrayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewCarouselAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewColumnAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewComfyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewCompactAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewDayAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewHeadlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewListAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewModuleAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewQuiltAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewStreamAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconViewWeekAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVignetteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVisibilityAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVisibilityOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVoiceChatAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVoiceOverOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVoicemailAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVolumeDownAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVolumeMuteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVolumeOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVolumeUpAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVpnKeyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconVpnLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWallpaperAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWarningAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWatchAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWatchLaterAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWavesAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWbAutoAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWbCloudyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWbIncandescentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWbIridescentAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWbSunnyAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWcAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWebAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWebAssetAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWeekendAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWhatshotAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWhereToVoteAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWidgetsAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWifiAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWifiLockAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWifiOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWifiTetheringAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWorkAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWorkOffAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWorkOutlineAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconWrapTextAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconYoutubeSearchedForAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconZoomInAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconZoomInMapAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconZoomOutAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxIconZoomOutMapAttributes { "size": | 'extra-small' | 'small' | 'normal' | 'large' | 'auto' | string; } interface RuxInputAttributes { "label": string; "placeholder": string; "helpText": string; "errorText": string; "invalid": boolean; "value": string; "name": string; "type": | 'text' | 'number' | 'email' | 'url' | 'search' | 'password' | 'date' | 'datetime-local' | 'time' | 'tel'; "min": string; "max": string; "maxlength": string; "minlength": string; "disabled": boolean; "required": boolean; "size": 'small' | 'medium' | 'large'; "step": string; "spellcheck": boolean; "readonly": boolean; "autocomplete": string; } interface RuxLogAttributes { "timezone": string; "filter": string; } interface RuxMenuItemAttributes { "selected": boolean; "disabled": boolean; "value": string; "href": string | undefined; "target": string | undefined; "rel": string | undefined; "download": string | undefined; } interface RuxMonitoringIconAttributes { "status": Status; "label": string; "sublabel": string; "icon": string; "size": string; "notifications": number; } interface RuxMonitoringProgressIconAttributes { "label": string; "sublabel": string; "notifications": number; "min": number; "max": number; "progress": number; } interface RuxNotificationAttributes { "open": boolean; "message": string; "status": Status; "closeAfter": number; "small": boolean; "hideClose": boolean; } interface RuxOptionAttributes { "value": string; "label": string; "disabled": boolean; } interface RuxOptionGroupAttributes { "label": string; } interface RuxPopUpAttributes { "open": boolean; "placement": ExtendedPlacement; "disableAutoUpdate": boolean; "enableAnimationFrame": boolean; "strategy": 'absolute' | 'fixed'; "closeOnSelect": boolean; } interface RuxProgressAttributes { "value": number; "max": number; "hideLabel": boolean; } interface RuxPushButtonAttributes { "icon": string; "iconOnly": boolean; "disabled": boolean; "checked": boolean; "label": string; "name": string; "value": string; "size": 'small' | 'medium' | 'large'; } interface RuxRadioAttributes { "name": string; "value": string; "checked": boolean; "disabled": boolean; "label": string; } interface RuxRadioGroupAttributes { "label": string; "invalid": boolean; "required": boolean; "name": string; "value": string; "helpText": string; "errorText": string; } interface RuxRulerAttributes { "showStartOfDay": boolean | undefined; } interface RuxSegmentedButtonAttributes { "selected": string; "size": 'small' | 'medium' | 'large'; "disabled": boolean; } interface RuxSelectAttributes { "disabled": boolean; "required": boolean; "label": string; "inputId": string; "labelId": string; "invalid": boolean; "multiple": boolean; "name": string; "value": string | string[]; "helpText": string; "errorText": string; "size": 'small' | 'medium' | 'large'; "inline": boolean; } interface RuxSliderAttributes { "min": number; "max": number; "step": number; "value": number; "ticksOnly": boolean; "disabled": boolean; "name": string; "label": string; "helpText": string; "errorText": string; "minVal": number; "strict": boolean; } interface RuxStatusAttributes { "status": Status; } interface RuxSwitchAttributes { "name": string; "value": string; "checked": boolean; "disabled": boolean; "label": string; } interface RuxTabAttributes { "selected": boolean; "disabled": boolean; "small": boolean; } interface RuxTableRowAttributes { "selected": boolean; } interface RuxTabsAttributes { "small": boolean; "compact": boolean; } interface RuxTagAttributes { "status": StatusTags; } interface RuxTextareaAttributes { "label": string; "placeholder": string; "helpText": string; "errorText": string; "invalid": boolean; "value": string; "name": string; "minLength": string; "maxLength": string; "rows": number; "disabled": boolean; "required": boolean; "readonly": boolean; "size": 'small' | 'medium' | 'large'; } interface RuxTimeRegionAttributes { "start": string; "end": string; "hideTimestamp": boolean; "status": Status; "partial": 'none' | 'start' | 'end' | 'ongoing'; "selected": boolean; } interface RuxTimelineAttributes { "start": string; "end": string; "zoom": number; "playhead": string; "hasPlayedIndicator": boolean; "interval": 'month' | 'week' | 'hour' | 'day' | 'minute'; "showGrid": boolean; "timezone": string; "rulerPosition": | 'top' | 'bottom' | 'both'; "hideJDay": boolean; "showSecondaryRuler": boolean; } interface RuxToastAttributes { "message": string; "closeAfter": number; "hideClose": boolean; "status": Status; } interface RuxToastStackAttributes { "position": ToastStackPosition; } interface RuxTooltipAttributes { "message": string; "open": boolean; "delay": number; "offset": number; "placement": ExtendedPlacement; "disableAutoUpdate": boolean; "strategy": 'absolute' | 'fixed'; } interface RuxTrackAttributes { "playhead": string; } interface RuxTreeNodeAttributes { "expanded": boolean; "selected": boolean; } interface IntrinsicElements { "rux-accordion": Omit & { [K in keyof RuxAccordion & keyof RuxAccordionAttributes]?: RuxAccordion[K] } & { [K in keyof RuxAccordion & keyof RuxAccordionAttributes as `attr:${K}`]?: RuxAccordionAttributes[K] } & { [K in keyof RuxAccordion & keyof RuxAccordionAttributes as `prop:${K}`]?: RuxAccordion[K] }; "rux-accordion-item": Omit & { [K in keyof RuxAccordionItem & keyof RuxAccordionItemAttributes]?: RuxAccordionItem[K] } & { [K in keyof RuxAccordionItem & keyof RuxAccordionItemAttributes as `attr:${K}`]?: RuxAccordionItemAttributes[K] } & { [K in keyof RuxAccordionItem & keyof RuxAccordionItemAttributes as `prop:${K}`]?: RuxAccordionItem[K] }; "rux-breadcrumb": RuxBreadcrumb; "rux-breadcrumb-item": Omit & { [K in keyof RuxBreadcrumbItem & keyof RuxBreadcrumbItemAttributes]?: RuxBreadcrumbItem[K] } & { [K in keyof RuxBreadcrumbItem & keyof RuxBreadcrumbItemAttributes as `attr:${K}`]?: RuxBreadcrumbItemAttributes[K] } & { [K in keyof RuxBreadcrumbItem & keyof RuxBreadcrumbItemAttributes as `prop:${K}`]?: RuxBreadcrumbItem[K] }; "rux-button": Omit & { [K in keyof RuxButton & keyof RuxButtonAttributes]?: RuxButton[K] } & { [K in keyof RuxButton & keyof RuxButtonAttributes as `attr:${K}`]?: RuxButtonAttributes[K] } & { [K in keyof RuxButton & keyof RuxButtonAttributes as `prop:${K}`]?: RuxButton[K] }; "rux-button-group": Omit & { [K in keyof RuxButtonGroup & keyof RuxButtonGroupAttributes]?: RuxButtonGroup[K] } & { [K in keyof RuxButtonGroup & keyof RuxButtonGroupAttributes as `attr:${K}`]?: RuxButtonGroupAttributes[K] } & { [K in keyof RuxButtonGroup & keyof RuxButtonGroupAttributes as `prop:${K}`]?: RuxButtonGroup[K] }; "rux-card": RuxCard; "rux-checkbox": Omit & { [K in keyof RuxCheckbox & keyof RuxCheckboxAttributes]?: RuxCheckbox[K] } & { [K in keyof RuxCheckbox & keyof RuxCheckboxAttributes as `attr:${K}`]?: RuxCheckboxAttributes[K] } & { [K in keyof RuxCheckbox & keyof RuxCheckboxAttributes as `prop:${K}`]?: RuxCheckbox[K] }; "rux-checkbox-group": Omit & { [K in keyof RuxCheckboxGroup & keyof RuxCheckboxGroupAttributes]?: RuxCheckboxGroup[K] } & { [K in keyof RuxCheckboxGroup & keyof RuxCheckboxGroupAttributes as `attr:${K}`]?: RuxCheckboxGroupAttributes[K] } & { [K in keyof RuxCheckboxGroup & keyof RuxCheckboxGroupAttributes as `prop:${K}`]?: RuxCheckboxGroup[K] }; "rux-classification-marking": Omit & { [K in keyof RuxClassificationMarking & keyof RuxClassificationMarkingAttributes]?: RuxClassificationMarking[K] } & { [K in keyof RuxClassificationMarking & keyof RuxClassificationMarkingAttributes as `attr:${K}`]?: RuxClassificationMarkingAttributes[K] } & { [K in keyof RuxClassificationMarking & keyof RuxClassificationMarkingAttributes as `prop:${K}`]?: RuxClassificationMarking[K] }; "rux-clock": Omit & { [K in keyof RuxClock & keyof RuxClockAttributes]?: RuxClock[K] } & { [K in keyof RuxClock & keyof RuxClockAttributes as `attr:${K}`]?: RuxClockAttributes[K] } & { [K in keyof RuxClock & keyof RuxClockAttributes as `prop:${K}`]?: RuxClock[K] }; "rux-container": RuxContainer; "rux-datetime": Omit & { [K in keyof RuxDatetime & keyof RuxDatetimeAttributes]?: RuxDatetime[K] } & { [K in keyof RuxDatetime & keyof RuxDatetimeAttributes as `attr:${K}`]?: RuxDatetimeAttributes[K] } & { [K in keyof RuxDatetime & keyof RuxDatetimeAttributes as `prop:${K}`]?: RuxDatetime[K] }; "rux-dialog": Omit & { [K in keyof RuxDialog & keyof RuxDialogAttributes]?: RuxDialog[K] } & { [K in keyof RuxDialog & keyof RuxDialogAttributes as `attr:${K}`]?: RuxDialogAttributes[K] } & { [K in keyof RuxDialog & keyof RuxDialogAttributes as `prop:${K}`]?: RuxDialog[K] }; "rux-global-status-bar": Omit & { [K in keyof RuxGlobalStatusBar & keyof RuxGlobalStatusBarAttributes]?: RuxGlobalStatusBar[K] } & { [K in keyof RuxGlobalStatusBar & keyof RuxGlobalStatusBarAttributes as `attr:${K}`]?: RuxGlobalStatusBarAttributes[K] } & { [K in keyof RuxGlobalStatusBar & keyof RuxGlobalStatusBarAttributes as `prop:${K}`]?: RuxGlobalStatusBar[K] }; "rux-icon": Omit & { [K in keyof RuxIcon & keyof RuxIconAttributes]?: RuxIcon[K] } & { [K in keyof RuxIcon & keyof RuxIconAttributes as `attr:${K}`]?: RuxIconAttributes[K] } & { [K in keyof RuxIcon & keyof RuxIconAttributes as `prop:${K}`]?: RuxIcon[K] } & OneOf<"icon", RuxIcon["icon"], RuxIconAttributes["icon"]>; "rux-icon-360": Omit & { [K in keyof RuxIcon360 & keyof RuxIcon360Attributes]?: RuxIcon360[K] } & { [K in keyof RuxIcon360 & keyof RuxIcon360Attributes as `attr:${K}`]?: RuxIcon360Attributes[K] } & { [K in keyof RuxIcon360 & keyof RuxIcon360Attributes as `prop:${K}`]?: RuxIcon360[K] }; "rux-icon-3d-rotation": Omit & { [K in keyof RuxIcon3dRotation & keyof RuxIcon3dRotationAttributes]?: RuxIcon3dRotation[K] } & { [K in keyof RuxIcon3dRotation & keyof RuxIcon3dRotationAttributes as `attr:${K}`]?: RuxIcon3dRotationAttributes[K] } & { [K in keyof RuxIcon3dRotation & keyof RuxIcon3dRotationAttributes as `prop:${K}`]?: RuxIcon3dRotation[K] }; "rux-icon-4k": Omit & { [K in keyof RuxIcon4k & keyof RuxIcon4kAttributes]?: RuxIcon4k[K] } & { [K in keyof RuxIcon4k & keyof RuxIcon4kAttributes as `attr:${K}`]?: RuxIcon4kAttributes[K] } & { [K in keyof RuxIcon4k & keyof RuxIcon4kAttributes as `prop:${K}`]?: RuxIcon4k[K] }; "rux-icon-ac-unit": Omit & { [K in keyof RuxIconAcUnit & keyof RuxIconAcUnitAttributes]?: RuxIconAcUnit[K] } & { [K in keyof RuxIconAcUnit & keyof RuxIconAcUnitAttributes as `attr:${K}`]?: RuxIconAcUnitAttributes[K] } & { [K in keyof RuxIconAcUnit & keyof RuxIconAcUnitAttributes as `prop:${K}`]?: RuxIconAcUnit[K] }; "rux-icon-access-alarms": Omit & { [K in keyof RuxIconAccessAlarms & keyof RuxIconAccessAlarmsAttributes]?: RuxIconAccessAlarms[K] } & { [K in keyof RuxIconAccessAlarms & keyof RuxIconAccessAlarmsAttributes as `attr:${K}`]?: RuxIconAccessAlarmsAttributes[K] } & { [K in keyof RuxIconAccessAlarms & keyof RuxIconAccessAlarmsAttributes as `prop:${K}`]?: RuxIconAccessAlarms[K] }; "rux-icon-access-time": Omit & { [K in keyof RuxIconAccessTime & keyof RuxIconAccessTimeAttributes]?: RuxIconAccessTime[K] } & { [K in keyof RuxIconAccessTime & keyof RuxIconAccessTimeAttributes as `attr:${K}`]?: RuxIconAccessTimeAttributes[K] } & { [K in keyof RuxIconAccessTime & keyof RuxIconAccessTimeAttributes as `prop:${K}`]?: RuxIconAccessTime[K] }; "rux-icon-accessibility": Omit & { [K in keyof RuxIconAccessibility & keyof RuxIconAccessibilityAttributes]?: RuxIconAccessibility[K] } & { [K in keyof RuxIconAccessibility & keyof RuxIconAccessibilityAttributes as `attr:${K}`]?: RuxIconAccessibilityAttributes[K] } & { [K in keyof RuxIconAccessibility & keyof RuxIconAccessibilityAttributes as `prop:${K}`]?: RuxIconAccessibility[K] }; "rux-icon-accessibility-new": Omit & { [K in keyof RuxIconAccessibilityNew & keyof RuxIconAccessibilityNewAttributes]?: RuxIconAccessibilityNew[K] } & { [K in keyof RuxIconAccessibilityNew & keyof RuxIconAccessibilityNewAttributes as `attr:${K}`]?: RuxIconAccessibilityNewAttributes[K] } & { [K in keyof RuxIconAccessibilityNew & keyof RuxIconAccessibilityNewAttributes as `prop:${K}`]?: RuxIconAccessibilityNew[K] }; "rux-icon-accessible": Omit & { [K in keyof RuxIconAccessible & keyof RuxIconAccessibleAttributes]?: RuxIconAccessible[K] } & { [K in keyof RuxIconAccessible & keyof RuxIconAccessibleAttributes as `attr:${K}`]?: RuxIconAccessibleAttributes[K] } & { [K in keyof RuxIconAccessible & keyof RuxIconAccessibleAttributes as `prop:${K}`]?: RuxIconAccessible[K] }; "rux-icon-accessible-forward": Omit & { [K in keyof RuxIconAccessibleForward & keyof RuxIconAccessibleForwardAttributes]?: RuxIconAccessibleForward[K] } & { [K in keyof RuxIconAccessibleForward & keyof RuxIconAccessibleForwardAttributes as `attr:${K}`]?: RuxIconAccessibleForwardAttributes[K] } & { [K in keyof RuxIconAccessibleForward & keyof RuxIconAccessibleForwardAttributes as `prop:${K}`]?: RuxIconAccessibleForward[K] }; "rux-icon-account-balance": Omit & { [K in keyof RuxIconAccountBalance & keyof RuxIconAccountBalanceAttributes]?: RuxIconAccountBalance[K] } & { [K in keyof RuxIconAccountBalance & keyof RuxIconAccountBalanceAttributes as `attr:${K}`]?: RuxIconAccountBalanceAttributes[K] } & { [K in keyof RuxIconAccountBalance & keyof RuxIconAccountBalanceAttributes as `prop:${K}`]?: RuxIconAccountBalance[K] }; "rux-icon-account-balance-wallet": Omit & { [K in keyof RuxIconAccountBalanceWallet & keyof RuxIconAccountBalanceWalletAttributes]?: RuxIconAccountBalanceWallet[K] } & { [K in keyof RuxIconAccountBalanceWallet & keyof RuxIconAccountBalanceWalletAttributes as `attr:${K}`]?: RuxIconAccountBalanceWalletAttributes[K] } & { [K in keyof RuxIconAccountBalanceWallet & keyof RuxIconAccountBalanceWalletAttributes as `prop:${K}`]?: RuxIconAccountBalanceWallet[K] }; "rux-icon-account-box": Omit & { [K in keyof RuxIconAccountBox & keyof RuxIconAccountBoxAttributes]?: RuxIconAccountBox[K] } & { [K in keyof RuxIconAccountBox & keyof RuxIconAccountBoxAttributes as `attr:${K}`]?: RuxIconAccountBoxAttributes[K] } & { [K in keyof RuxIconAccountBox & keyof RuxIconAccountBoxAttributes as `prop:${K}`]?: RuxIconAccountBox[K] }; "rux-icon-account-circle": Omit & { [K in keyof RuxIconAccountCircle & keyof RuxIconAccountCircleAttributes]?: RuxIconAccountCircle[K] } & { [K in keyof RuxIconAccountCircle & keyof RuxIconAccountCircleAttributes as `attr:${K}`]?: RuxIconAccountCircleAttributes[K] } & { [K in keyof RuxIconAccountCircle & keyof RuxIconAccountCircleAttributes as `prop:${K}`]?: RuxIconAccountCircle[K] }; "rux-icon-adb": Omit & { [K in keyof RuxIconAdb & keyof RuxIconAdbAttributes]?: RuxIconAdb[K] } & { [K in keyof RuxIconAdb & keyof RuxIconAdbAttributes as `attr:${K}`]?: RuxIconAdbAttributes[K] } & { [K in keyof RuxIconAdb & keyof RuxIconAdbAttributes as `prop:${K}`]?: RuxIconAdb[K] }; "rux-icon-add": Omit & { [K in keyof RuxIconAdd & keyof RuxIconAddAttributes]?: RuxIconAdd[K] } & { [K in keyof RuxIconAdd & keyof RuxIconAddAttributes as `attr:${K}`]?: RuxIconAddAttributes[K] } & { [K in keyof RuxIconAdd & keyof RuxIconAddAttributes as `prop:${K}`]?: RuxIconAdd[K] }; "rux-icon-add-a-photo": Omit & { [K in keyof RuxIconAddAPhoto & keyof RuxIconAddAPhotoAttributes]?: RuxIconAddAPhoto[K] } & { [K in keyof RuxIconAddAPhoto & keyof RuxIconAddAPhotoAttributes as `attr:${K}`]?: RuxIconAddAPhotoAttributes[K] } & { [K in keyof RuxIconAddAPhoto & keyof RuxIconAddAPhotoAttributes as `prop:${K}`]?: RuxIconAddAPhoto[K] }; "rux-icon-add-alarm": Omit & { [K in keyof RuxIconAddAlarm & keyof RuxIconAddAlarmAttributes]?: RuxIconAddAlarm[K] } & { [K in keyof RuxIconAddAlarm & keyof RuxIconAddAlarmAttributes as `attr:${K}`]?: RuxIconAddAlarmAttributes[K] } & { [K in keyof RuxIconAddAlarm & keyof RuxIconAddAlarmAttributes as `prop:${K}`]?: RuxIconAddAlarm[K] }; "rux-icon-add-alert": Omit & { [K in keyof RuxIconAddAlert & keyof RuxIconAddAlertAttributes]?: RuxIconAddAlert[K] } & { [K in keyof RuxIconAddAlert & keyof RuxIconAddAlertAttributes as `attr:${K}`]?: RuxIconAddAlertAttributes[K] } & { [K in keyof RuxIconAddAlert & keyof RuxIconAddAlertAttributes as `prop:${K}`]?: RuxIconAddAlert[K] }; "rux-icon-add-box": Omit & { [K in keyof RuxIconAddBox & keyof RuxIconAddBoxAttributes]?: RuxIconAddBox[K] } & { [K in keyof RuxIconAddBox & keyof RuxIconAddBoxAttributes as `attr:${K}`]?: RuxIconAddBoxAttributes[K] } & { [K in keyof RuxIconAddBox & keyof RuxIconAddBoxAttributes as `prop:${K}`]?: RuxIconAddBox[K] }; "rux-icon-add-circle": Omit & { [K in keyof RuxIconAddCircle & keyof RuxIconAddCircleAttributes]?: RuxIconAddCircle[K] } & { [K in keyof RuxIconAddCircle & keyof RuxIconAddCircleAttributes as `attr:${K}`]?: RuxIconAddCircleAttributes[K] } & { [K in keyof RuxIconAddCircle & keyof RuxIconAddCircleAttributes as `prop:${K}`]?: RuxIconAddCircle[K] }; "rux-icon-add-circle-outline": Omit & { [K in keyof RuxIconAddCircleOutline & keyof RuxIconAddCircleOutlineAttributes]?: RuxIconAddCircleOutline[K] } & { [K in keyof RuxIconAddCircleOutline & keyof RuxIconAddCircleOutlineAttributes as `attr:${K}`]?: RuxIconAddCircleOutlineAttributes[K] } & { [K in keyof RuxIconAddCircleOutline & keyof RuxIconAddCircleOutlineAttributes as `prop:${K}`]?: RuxIconAddCircleOutline[K] }; "rux-icon-add-comment": Omit & { [K in keyof RuxIconAddComment & keyof RuxIconAddCommentAttributes]?: RuxIconAddComment[K] } & { [K in keyof RuxIconAddComment & keyof RuxIconAddCommentAttributes as `attr:${K}`]?: RuxIconAddCommentAttributes[K] } & { [K in keyof RuxIconAddComment & keyof RuxIconAddCommentAttributes as `prop:${K}`]?: RuxIconAddComment[K] }; "rux-icon-add-location": Omit & { [K in keyof RuxIconAddLocation & keyof RuxIconAddLocationAttributes]?: RuxIconAddLocation[K] } & { [K in keyof RuxIconAddLocation & keyof RuxIconAddLocationAttributes as `attr:${K}`]?: RuxIconAddLocationAttributes[K] } & { [K in keyof RuxIconAddLocation & keyof RuxIconAddLocationAttributes as `prop:${K}`]?: RuxIconAddLocation[K] }; "rux-icon-add-photo-alternate": Omit & { [K in keyof RuxIconAddPhotoAlternate & keyof RuxIconAddPhotoAlternateAttributes]?: RuxIconAddPhotoAlternate[K] } & { [K in keyof RuxIconAddPhotoAlternate & keyof RuxIconAddPhotoAlternateAttributes as `attr:${K}`]?: RuxIconAddPhotoAlternateAttributes[K] } & { [K in keyof RuxIconAddPhotoAlternate & keyof RuxIconAddPhotoAlternateAttributes as `prop:${K}`]?: RuxIconAddPhotoAlternate[K] }; "rux-icon-add-shopping-cart": Omit & { [K in keyof RuxIconAddShoppingCart & keyof RuxIconAddShoppingCartAttributes]?: RuxIconAddShoppingCart[K] } & { [K in keyof RuxIconAddShoppingCart & keyof RuxIconAddShoppingCartAttributes as `attr:${K}`]?: RuxIconAddShoppingCartAttributes[K] } & { [K in keyof RuxIconAddShoppingCart & keyof RuxIconAddShoppingCartAttributes as `prop:${K}`]?: RuxIconAddShoppingCart[K] }; "rux-icon-add-to-home-screen": Omit & { [K in keyof RuxIconAddToHomeScreen & keyof RuxIconAddToHomeScreenAttributes]?: RuxIconAddToHomeScreen[K] } & { [K in keyof RuxIconAddToHomeScreen & keyof RuxIconAddToHomeScreenAttributes as `attr:${K}`]?: RuxIconAddToHomeScreenAttributes[K] } & { [K in keyof RuxIconAddToHomeScreen & keyof RuxIconAddToHomeScreenAttributes as `prop:${K}`]?: RuxIconAddToHomeScreen[K] }; "rux-icon-add-to-photos": Omit & { [K in keyof RuxIconAddToPhotos & keyof RuxIconAddToPhotosAttributes]?: RuxIconAddToPhotos[K] } & { [K in keyof RuxIconAddToPhotos & keyof RuxIconAddToPhotosAttributes as `attr:${K}`]?: RuxIconAddToPhotosAttributes[K] } & { [K in keyof RuxIconAddToPhotos & keyof RuxIconAddToPhotosAttributes as `prop:${K}`]?: RuxIconAddToPhotos[K] }; "rux-icon-add-to-queue": Omit & { [K in keyof RuxIconAddToQueue & keyof RuxIconAddToQueueAttributes]?: RuxIconAddToQueue[K] } & { [K in keyof RuxIconAddToQueue & keyof RuxIconAddToQueueAttributes as `attr:${K}`]?: RuxIconAddToQueueAttributes[K] } & { [K in keyof RuxIconAddToQueue & keyof RuxIconAddToQueueAttributes as `prop:${K}`]?: RuxIconAddToQueue[K] }; "rux-icon-adjust": Omit & { [K in keyof RuxIconAdjust & keyof RuxIconAdjustAttributes]?: RuxIconAdjust[K] } & { [K in keyof RuxIconAdjust & keyof RuxIconAdjustAttributes as `attr:${K}`]?: RuxIconAdjustAttributes[K] } & { [K in keyof RuxIconAdjust & keyof RuxIconAdjustAttributes as `prop:${K}`]?: RuxIconAdjust[K] }; "rux-icon-airline-seat-flat": Omit & { [K in keyof RuxIconAirlineSeatFlat & keyof RuxIconAirlineSeatFlatAttributes]?: RuxIconAirlineSeatFlat[K] } & { [K in keyof RuxIconAirlineSeatFlat & keyof RuxIconAirlineSeatFlatAttributes as `attr:${K}`]?: RuxIconAirlineSeatFlatAttributes[K] } & { [K in keyof RuxIconAirlineSeatFlat & keyof RuxIconAirlineSeatFlatAttributes as `prop:${K}`]?: RuxIconAirlineSeatFlat[K] }; "rux-icon-airline-seat-flat-angled": Omit & { [K in keyof RuxIconAirlineSeatFlatAngled & keyof RuxIconAirlineSeatFlatAngledAttributes]?: RuxIconAirlineSeatFlatAngled[K] } & { [K in keyof RuxIconAirlineSeatFlatAngled & keyof RuxIconAirlineSeatFlatAngledAttributes as `attr:${K}`]?: RuxIconAirlineSeatFlatAngledAttributes[K] } & { [K in keyof RuxIconAirlineSeatFlatAngled & keyof RuxIconAirlineSeatFlatAngledAttributes as `prop:${K}`]?: RuxIconAirlineSeatFlatAngled[K] }; "rux-icon-airline-seat-individual-suite": Omit & { [K in keyof RuxIconAirlineSeatIndividualSuite & keyof RuxIconAirlineSeatIndividualSuiteAttributes]?: RuxIconAirlineSeatIndividualSuite[K] } & { [K in keyof RuxIconAirlineSeatIndividualSuite & keyof RuxIconAirlineSeatIndividualSuiteAttributes as `attr:${K}`]?: RuxIconAirlineSeatIndividualSuiteAttributes[K] } & { [K in keyof RuxIconAirlineSeatIndividualSuite & keyof RuxIconAirlineSeatIndividualSuiteAttributes as `prop:${K}`]?: RuxIconAirlineSeatIndividualSuite[K] }; "rux-icon-airline-seat-legroom-extra": Omit & { [K in keyof RuxIconAirlineSeatLegroomExtra & keyof RuxIconAirlineSeatLegroomExtraAttributes]?: RuxIconAirlineSeatLegroomExtra[K] } & { [K in keyof RuxIconAirlineSeatLegroomExtra & keyof RuxIconAirlineSeatLegroomExtraAttributes as `attr:${K}`]?: RuxIconAirlineSeatLegroomExtraAttributes[K] } & { [K in keyof RuxIconAirlineSeatLegroomExtra & keyof RuxIconAirlineSeatLegroomExtraAttributes as `prop:${K}`]?: RuxIconAirlineSeatLegroomExtra[K] }; "rux-icon-airline-seat-legroom-normal": Omit & { [K in keyof RuxIconAirlineSeatLegroomNormal & keyof RuxIconAirlineSeatLegroomNormalAttributes]?: RuxIconAirlineSeatLegroomNormal[K] } & { [K in keyof RuxIconAirlineSeatLegroomNormal & keyof RuxIconAirlineSeatLegroomNormalAttributes as `attr:${K}`]?: RuxIconAirlineSeatLegroomNormalAttributes[K] } & { [K in keyof RuxIconAirlineSeatLegroomNormal & keyof RuxIconAirlineSeatLegroomNormalAttributes as `prop:${K}`]?: RuxIconAirlineSeatLegroomNormal[K] }; "rux-icon-airline-seat-legroom-reduced": Omit & { [K in keyof RuxIconAirlineSeatLegroomReduced & keyof RuxIconAirlineSeatLegroomReducedAttributes]?: RuxIconAirlineSeatLegroomReduced[K] } & { [K in keyof RuxIconAirlineSeatLegroomReduced & keyof RuxIconAirlineSeatLegroomReducedAttributes as `attr:${K}`]?: RuxIconAirlineSeatLegroomReducedAttributes[K] } & { [K in keyof RuxIconAirlineSeatLegroomReduced & keyof RuxIconAirlineSeatLegroomReducedAttributes as `prop:${K}`]?: RuxIconAirlineSeatLegroomReduced[K] }; "rux-icon-airline-seat-recline-extra": Omit & { [K in keyof RuxIconAirlineSeatReclineExtra & keyof RuxIconAirlineSeatReclineExtraAttributes]?: RuxIconAirlineSeatReclineExtra[K] } & { [K in keyof RuxIconAirlineSeatReclineExtra & keyof RuxIconAirlineSeatReclineExtraAttributes as `attr:${K}`]?: RuxIconAirlineSeatReclineExtraAttributes[K] } & { [K in keyof RuxIconAirlineSeatReclineExtra & keyof RuxIconAirlineSeatReclineExtraAttributes as `prop:${K}`]?: RuxIconAirlineSeatReclineExtra[K] }; "rux-icon-airline-seat-recline-normal": Omit & { [K in keyof RuxIconAirlineSeatReclineNormal & keyof RuxIconAirlineSeatReclineNormalAttributes]?: RuxIconAirlineSeatReclineNormal[K] } & { [K in keyof RuxIconAirlineSeatReclineNormal & keyof RuxIconAirlineSeatReclineNormalAttributes as `attr:${K}`]?: RuxIconAirlineSeatReclineNormalAttributes[K] } & { [K in keyof RuxIconAirlineSeatReclineNormal & keyof RuxIconAirlineSeatReclineNormalAttributes as `prop:${K}`]?: RuxIconAirlineSeatReclineNormal[K] }; "rux-icon-airplanemode-active": Omit & { [K in keyof RuxIconAirplanemodeActive & keyof RuxIconAirplanemodeActiveAttributes]?: RuxIconAirplanemodeActive[K] } & { [K in keyof RuxIconAirplanemodeActive & keyof RuxIconAirplanemodeActiveAttributes as `attr:${K}`]?: RuxIconAirplanemodeActiveAttributes[K] } & { [K in keyof RuxIconAirplanemodeActive & keyof RuxIconAirplanemodeActiveAttributes as `prop:${K}`]?: RuxIconAirplanemodeActive[K] }; "rux-icon-airplanemode-inactive": Omit & { [K in keyof RuxIconAirplanemodeInactive & keyof RuxIconAirplanemodeInactiveAttributes]?: RuxIconAirplanemodeInactive[K] } & { [K in keyof RuxIconAirplanemodeInactive & keyof RuxIconAirplanemodeInactiveAttributes as `attr:${K}`]?: RuxIconAirplanemodeInactiveAttributes[K] } & { [K in keyof RuxIconAirplanemodeInactive & keyof RuxIconAirplanemodeInactiveAttributes as `prop:${K}`]?: RuxIconAirplanemodeInactive[K] }; "rux-icon-airplay": Omit & { [K in keyof RuxIconAirplay & keyof RuxIconAirplayAttributes]?: RuxIconAirplay[K] } & { [K in keyof RuxIconAirplay & keyof RuxIconAirplayAttributes as `attr:${K}`]?: RuxIconAirplayAttributes[K] } & { [K in keyof RuxIconAirplay & keyof RuxIconAirplayAttributes as `prop:${K}`]?: RuxIconAirplay[K] }; "rux-icon-airport-shuttle": Omit & { [K in keyof RuxIconAirportShuttle & keyof RuxIconAirportShuttleAttributes]?: RuxIconAirportShuttle[K] } & { [K in keyof RuxIconAirportShuttle & keyof RuxIconAirportShuttleAttributes as `attr:${K}`]?: RuxIconAirportShuttleAttributes[K] } & { [K in keyof RuxIconAirportShuttle & keyof RuxIconAirportShuttleAttributes as `prop:${K}`]?: RuxIconAirportShuttle[K] }; "rux-icon-alarm": Omit & { [K in keyof RuxIconAlarm & keyof RuxIconAlarmAttributes]?: RuxIconAlarm[K] } & { [K in keyof RuxIconAlarm & keyof RuxIconAlarmAttributes as `attr:${K}`]?: RuxIconAlarmAttributes[K] } & { [K in keyof RuxIconAlarm & keyof RuxIconAlarmAttributes as `prop:${K}`]?: RuxIconAlarm[K] }; "rux-icon-alarm-add": Omit & { [K in keyof RuxIconAlarmAdd & keyof RuxIconAlarmAddAttributes]?: RuxIconAlarmAdd[K] } & { [K in keyof RuxIconAlarmAdd & keyof RuxIconAlarmAddAttributes as `attr:${K}`]?: RuxIconAlarmAddAttributes[K] } & { [K in keyof RuxIconAlarmAdd & keyof RuxIconAlarmAddAttributes as `prop:${K}`]?: RuxIconAlarmAdd[K] }; "rux-icon-alarm-off": Omit & { [K in keyof RuxIconAlarmOff & keyof RuxIconAlarmOffAttributes]?: RuxIconAlarmOff[K] } & { [K in keyof RuxIconAlarmOff & keyof RuxIconAlarmOffAttributes as `attr:${K}`]?: RuxIconAlarmOffAttributes[K] } & { [K in keyof RuxIconAlarmOff & keyof RuxIconAlarmOffAttributes as `prop:${K}`]?: RuxIconAlarmOff[K] }; "rux-icon-alarm-on": Omit & { [K in keyof RuxIconAlarmOn & keyof RuxIconAlarmOnAttributes]?: RuxIconAlarmOn[K] } & { [K in keyof RuxIconAlarmOn & keyof RuxIconAlarmOnAttributes as `attr:${K}`]?: RuxIconAlarmOnAttributes[K] } & { [K in keyof RuxIconAlarmOn & keyof RuxIconAlarmOnAttributes as `prop:${K}`]?: RuxIconAlarmOn[K] }; "rux-icon-album": Omit & { [K in keyof RuxIconAlbum & keyof RuxIconAlbumAttributes]?: RuxIconAlbum[K] } & { [K in keyof RuxIconAlbum & keyof RuxIconAlbumAttributes as `attr:${K}`]?: RuxIconAlbumAttributes[K] } & { [K in keyof RuxIconAlbum & keyof RuxIconAlbumAttributes as `prop:${K}`]?: RuxIconAlbum[K] }; "rux-icon-all-inbox": Omit & { [K in keyof RuxIconAllInbox & keyof RuxIconAllInboxAttributes]?: RuxIconAllInbox[K] } & { [K in keyof RuxIconAllInbox & keyof RuxIconAllInboxAttributes as `attr:${K}`]?: RuxIconAllInboxAttributes[K] } & { [K in keyof RuxIconAllInbox & keyof RuxIconAllInboxAttributes as `prop:${K}`]?: RuxIconAllInbox[K] }; "rux-icon-all-inclusive": Omit & { [K in keyof RuxIconAllInclusive & keyof RuxIconAllInclusiveAttributes]?: RuxIconAllInclusive[K] } & { [K in keyof RuxIconAllInclusive & keyof RuxIconAllInclusiveAttributes as `attr:${K}`]?: RuxIconAllInclusiveAttributes[K] } & { [K in keyof RuxIconAllInclusive & keyof RuxIconAllInclusiveAttributes as `prop:${K}`]?: RuxIconAllInclusive[K] }; "rux-icon-all-out": Omit & { [K in keyof RuxIconAllOut & keyof RuxIconAllOutAttributes]?: RuxIconAllOut[K] } & { [K in keyof RuxIconAllOut & keyof RuxIconAllOutAttributes as `attr:${K}`]?: RuxIconAllOutAttributes[K] } & { [K in keyof RuxIconAllOut & keyof RuxIconAllOutAttributes as `prop:${K}`]?: RuxIconAllOut[K] }; "rux-icon-alternate-email": Omit & { [K in keyof RuxIconAlternateEmail & keyof RuxIconAlternateEmailAttributes]?: RuxIconAlternateEmail[K] } & { [K in keyof RuxIconAlternateEmail & keyof RuxIconAlternateEmailAttributes as `attr:${K}`]?: RuxIconAlternateEmailAttributes[K] } & { [K in keyof RuxIconAlternateEmail & keyof RuxIconAlternateEmailAttributes as `prop:${K}`]?: RuxIconAlternateEmail[K] }; "rux-icon-altitude": Omit & { [K in keyof RuxIconAltitude & keyof RuxIconAltitudeAttributes]?: RuxIconAltitude[K] } & { [K in keyof RuxIconAltitude & keyof RuxIconAltitudeAttributes as `attr:${K}`]?: RuxIconAltitudeAttributes[K] } & { [K in keyof RuxIconAltitude & keyof RuxIconAltitudeAttributes as `prop:${K}`]?: RuxIconAltitude[K] }; "rux-icon-android": Omit & { [K in keyof RuxIconAndroid & keyof RuxIconAndroidAttributes]?: RuxIconAndroid[K] } & { [K in keyof RuxIconAndroid & keyof RuxIconAndroidAttributes as `attr:${K}`]?: RuxIconAndroidAttributes[K] } & { [K in keyof RuxIconAndroid & keyof RuxIconAndroidAttributes as `prop:${K}`]?: RuxIconAndroid[K] }; "rux-icon-announcement": Omit & { [K in keyof RuxIconAnnouncement & keyof RuxIconAnnouncementAttributes]?: RuxIconAnnouncement[K] } & { [K in keyof RuxIconAnnouncement & keyof RuxIconAnnouncementAttributes as `attr:${K}`]?: RuxIconAnnouncementAttributes[K] } & { [K in keyof RuxIconAnnouncement & keyof RuxIconAnnouncementAttributes as `prop:${K}`]?: RuxIconAnnouncement[K] }; "rux-icon-antenna": Omit & { [K in keyof RuxIconAntenna & keyof RuxIconAntennaAttributes]?: RuxIconAntenna[K] } & { [K in keyof RuxIconAntenna & keyof RuxIconAntennaAttributes as `attr:${K}`]?: RuxIconAntennaAttributes[K] } & { [K in keyof RuxIconAntenna & keyof RuxIconAntennaAttributes as `prop:${K}`]?: RuxIconAntenna[K] }; "rux-icon-antenna-off": Omit & { [K in keyof RuxIconAntennaOff & keyof RuxIconAntennaOffAttributes]?: RuxIconAntennaOff[K] } & { [K in keyof RuxIconAntennaOff & keyof RuxIconAntennaOffAttributes as `attr:${K}`]?: RuxIconAntennaOffAttributes[K] } & { [K in keyof RuxIconAntennaOff & keyof RuxIconAntennaOffAttributes as `prop:${K}`]?: RuxIconAntennaOff[K] }; "rux-icon-antenna-receive": Omit & { [K in keyof RuxIconAntennaReceive & keyof RuxIconAntennaReceiveAttributes]?: RuxIconAntennaReceive[K] } & { [K in keyof RuxIconAntennaReceive & keyof RuxIconAntennaReceiveAttributes as `attr:${K}`]?: RuxIconAntennaReceiveAttributes[K] } & { [K in keyof RuxIconAntennaReceive & keyof RuxIconAntennaReceiveAttributes as `prop:${K}`]?: RuxIconAntennaReceive[K] }; "rux-icon-antenna-transmit": Omit & { [K in keyof RuxIconAntennaTransmit & keyof RuxIconAntennaTransmitAttributes]?: RuxIconAntennaTransmit[K] } & { [K in keyof RuxIconAntennaTransmit & keyof RuxIconAntennaTransmitAttributes as `attr:${K}`]?: RuxIconAntennaTransmitAttributes[K] } & { [K in keyof RuxIconAntennaTransmit & keyof RuxIconAntennaTransmitAttributes as `prop:${K}`]?: RuxIconAntennaTransmit[K] }; "rux-icon-apps": Omit & { [K in keyof RuxIconApps & keyof RuxIconAppsAttributes]?: RuxIconApps[K] } & { [K in keyof RuxIconApps & keyof RuxIconAppsAttributes as `attr:${K}`]?: RuxIconAppsAttributes[K] } & { [K in keyof RuxIconApps & keyof RuxIconAppsAttributes as `prop:${K}`]?: RuxIconApps[K] }; "rux-icon-archive": Omit & { [K in keyof RuxIconArchive & keyof RuxIconArchiveAttributes]?: RuxIconArchive[K] } & { [K in keyof RuxIconArchive & keyof RuxIconArchiveAttributes as `attr:${K}`]?: RuxIconArchiveAttributes[K] } & { [K in keyof RuxIconArchive & keyof RuxIconArchiveAttributes as `prop:${K}`]?: RuxIconArchive[K] }; "rux-icon-arrow-back": Omit & { [K in keyof RuxIconArrowBack & keyof RuxIconArrowBackAttributes]?: RuxIconArrowBack[K] } & { [K in keyof RuxIconArrowBack & keyof RuxIconArrowBackAttributes as `attr:${K}`]?: RuxIconArrowBackAttributes[K] } & { [K in keyof RuxIconArrowBack & keyof RuxIconArrowBackAttributes as `prop:${K}`]?: RuxIconArrowBack[K] }; "rux-icon-arrow-back-ios": Omit & { [K in keyof RuxIconArrowBackIos & keyof RuxIconArrowBackIosAttributes]?: RuxIconArrowBackIos[K] } & { [K in keyof RuxIconArrowBackIos & keyof RuxIconArrowBackIosAttributes as `attr:${K}`]?: RuxIconArrowBackIosAttributes[K] } & { [K in keyof RuxIconArrowBackIos & keyof RuxIconArrowBackIosAttributes as `prop:${K}`]?: RuxIconArrowBackIos[K] }; "rux-icon-arrow-downward": Omit & { [K in keyof RuxIconArrowDownward & keyof RuxIconArrowDownwardAttributes]?: RuxIconArrowDownward[K] } & { [K in keyof RuxIconArrowDownward & keyof RuxIconArrowDownwardAttributes as `attr:${K}`]?: RuxIconArrowDownwardAttributes[K] } & { [K in keyof RuxIconArrowDownward & keyof RuxIconArrowDownwardAttributes as `prop:${K}`]?: RuxIconArrowDownward[K] }; "rux-icon-arrow-drop-down": Omit & { [K in keyof RuxIconArrowDropDown & keyof RuxIconArrowDropDownAttributes]?: RuxIconArrowDropDown[K] } & { [K in keyof RuxIconArrowDropDown & keyof RuxIconArrowDropDownAttributes as `attr:${K}`]?: RuxIconArrowDropDownAttributes[K] } & { [K in keyof RuxIconArrowDropDown & keyof RuxIconArrowDropDownAttributes as `prop:${K}`]?: RuxIconArrowDropDown[K] }; "rux-icon-arrow-drop-down-circle": Omit & { [K in keyof RuxIconArrowDropDownCircle & keyof RuxIconArrowDropDownCircleAttributes]?: RuxIconArrowDropDownCircle[K] } & { [K in keyof RuxIconArrowDropDownCircle & keyof RuxIconArrowDropDownCircleAttributes as `attr:${K}`]?: RuxIconArrowDropDownCircleAttributes[K] } & { [K in keyof RuxIconArrowDropDownCircle & keyof RuxIconArrowDropDownCircleAttributes as `prop:${K}`]?: RuxIconArrowDropDownCircle[K] }; "rux-icon-arrow-drop-up": Omit & { [K in keyof RuxIconArrowDropUp & keyof RuxIconArrowDropUpAttributes]?: RuxIconArrowDropUp[K] } & { [K in keyof RuxIconArrowDropUp & keyof RuxIconArrowDropUpAttributes as `attr:${K}`]?: RuxIconArrowDropUpAttributes[K] } & { [K in keyof RuxIconArrowDropUp & keyof RuxIconArrowDropUpAttributes as `prop:${K}`]?: RuxIconArrowDropUp[K] }; "rux-icon-arrow-forward": Omit & { [K in keyof RuxIconArrowForward & keyof RuxIconArrowForwardAttributes]?: RuxIconArrowForward[K] } & { [K in keyof RuxIconArrowForward & keyof RuxIconArrowForwardAttributes as `attr:${K}`]?: RuxIconArrowForwardAttributes[K] } & { [K in keyof RuxIconArrowForward & keyof RuxIconArrowForwardAttributes as `prop:${K}`]?: RuxIconArrowForward[K] }; "rux-icon-arrow-forward-ios": Omit & { [K in keyof RuxIconArrowForwardIos & keyof RuxIconArrowForwardIosAttributes]?: RuxIconArrowForwardIos[K] } & { [K in keyof RuxIconArrowForwardIos & keyof RuxIconArrowForwardIosAttributes as `attr:${K}`]?: RuxIconArrowForwardIosAttributes[K] } & { [K in keyof RuxIconArrowForwardIos & keyof RuxIconArrowForwardIosAttributes as `prop:${K}`]?: RuxIconArrowForwardIos[K] }; "rux-icon-arrow-left": Omit & { [K in keyof RuxIconArrowLeft & keyof RuxIconArrowLeftAttributes]?: RuxIconArrowLeft[K] } & { [K in keyof RuxIconArrowLeft & keyof RuxIconArrowLeftAttributes as `attr:${K}`]?: RuxIconArrowLeftAttributes[K] } & { [K in keyof RuxIconArrowLeft & keyof RuxIconArrowLeftAttributes as `prop:${K}`]?: RuxIconArrowLeft[K] }; "rux-icon-arrow-right": Omit & { [K in keyof RuxIconArrowRight & keyof RuxIconArrowRightAttributes]?: RuxIconArrowRight[K] } & { [K in keyof RuxIconArrowRight & keyof RuxIconArrowRightAttributes as `attr:${K}`]?: RuxIconArrowRightAttributes[K] } & { [K in keyof RuxIconArrowRight & keyof RuxIconArrowRightAttributes as `prop:${K}`]?: RuxIconArrowRight[K] }; "rux-icon-arrow-right-alt": Omit & { [K in keyof RuxIconArrowRightAlt & keyof RuxIconArrowRightAltAttributes]?: RuxIconArrowRightAlt[K] } & { [K in keyof RuxIconArrowRightAlt & keyof RuxIconArrowRightAltAttributes as `attr:${K}`]?: RuxIconArrowRightAltAttributes[K] } & { [K in keyof RuxIconArrowRightAlt & keyof RuxIconArrowRightAltAttributes as `prop:${K}`]?: RuxIconArrowRightAlt[K] }; "rux-icon-arrow-upward": Omit & { [K in keyof RuxIconArrowUpward & keyof RuxIconArrowUpwardAttributes]?: RuxIconArrowUpward[K] } & { [K in keyof RuxIconArrowUpward & keyof RuxIconArrowUpwardAttributes as `attr:${K}`]?: RuxIconArrowUpwardAttributes[K] } & { [K in keyof RuxIconArrowUpward & keyof RuxIconArrowUpwardAttributes as `prop:${K}`]?: RuxIconArrowUpward[K] }; "rux-icon-art-track": Omit & { [K in keyof RuxIconArtTrack & keyof RuxIconArtTrackAttributes]?: RuxIconArtTrack[K] } & { [K in keyof RuxIconArtTrack & keyof RuxIconArtTrackAttributes as `attr:${K}`]?: RuxIconArtTrackAttributes[K] } & { [K in keyof RuxIconArtTrack & keyof RuxIconArtTrackAttributes as `prop:${K}`]?: RuxIconArtTrack[K] }; "rux-icon-aspect-ratio": Omit & { [K in keyof RuxIconAspectRatio & keyof RuxIconAspectRatioAttributes]?: RuxIconAspectRatio[K] } & { [K in keyof RuxIconAspectRatio & keyof RuxIconAspectRatioAttributes as `attr:${K}`]?: RuxIconAspectRatioAttributes[K] } & { [K in keyof RuxIconAspectRatio & keyof RuxIconAspectRatioAttributes as `prop:${K}`]?: RuxIconAspectRatio[K] }; "rux-icon-assessment": Omit & { [K in keyof RuxIconAssessment & keyof RuxIconAssessmentAttributes]?: RuxIconAssessment[K] } & { [K in keyof RuxIconAssessment & keyof RuxIconAssessmentAttributes as `attr:${K}`]?: RuxIconAssessmentAttributes[K] } & { [K in keyof RuxIconAssessment & keyof RuxIconAssessmentAttributes as `prop:${K}`]?: RuxIconAssessment[K] }; "rux-icon-assignment": Omit & { [K in keyof RuxIconAssignment & keyof RuxIconAssignmentAttributes]?: RuxIconAssignment[K] } & { [K in keyof RuxIconAssignment & keyof RuxIconAssignmentAttributes as `attr:${K}`]?: RuxIconAssignmentAttributes[K] } & { [K in keyof RuxIconAssignment & keyof RuxIconAssignmentAttributes as `prop:${K}`]?: RuxIconAssignment[K] }; "rux-icon-assignment-find": Omit & { [K in keyof RuxIconAssignmentFind & keyof RuxIconAssignmentFindAttributes]?: RuxIconAssignmentFind[K] } & { [K in keyof RuxIconAssignmentFind & keyof RuxIconAssignmentFindAttributes as `attr:${K}`]?: RuxIconAssignmentFindAttributes[K] } & { [K in keyof RuxIconAssignmentFind & keyof RuxIconAssignmentFindAttributes as `prop:${K}`]?: RuxIconAssignmentFind[K] }; "rux-icon-assignment-late": Omit & { [K in keyof RuxIconAssignmentLate & keyof RuxIconAssignmentLateAttributes]?: RuxIconAssignmentLate[K] } & { [K in keyof RuxIconAssignmentLate & keyof RuxIconAssignmentLateAttributes as `attr:${K}`]?: RuxIconAssignmentLateAttributes[K] } & { [K in keyof RuxIconAssignmentLate & keyof RuxIconAssignmentLateAttributes as `prop:${K}`]?: RuxIconAssignmentLate[K] }; "rux-icon-assignment-return": Omit & { [K in keyof RuxIconAssignmentReturn & keyof RuxIconAssignmentReturnAttributes]?: RuxIconAssignmentReturn[K] } & { [K in keyof RuxIconAssignmentReturn & keyof RuxIconAssignmentReturnAttributes as `attr:${K}`]?: RuxIconAssignmentReturnAttributes[K] } & { [K in keyof RuxIconAssignmentReturn & keyof RuxIconAssignmentReturnAttributes as `prop:${K}`]?: RuxIconAssignmentReturn[K] }; "rux-icon-assignment-returned": Omit & { [K in keyof RuxIconAssignmentReturned & keyof RuxIconAssignmentReturnedAttributes]?: RuxIconAssignmentReturned[K] } & { [K in keyof RuxIconAssignmentReturned & keyof RuxIconAssignmentReturnedAttributes as `attr:${K}`]?: RuxIconAssignmentReturnedAttributes[K] } & { [K in keyof RuxIconAssignmentReturned & keyof RuxIconAssignmentReturnedAttributes as `prop:${K}`]?: RuxIconAssignmentReturned[K] }; "rux-icon-assignment-turned-in": Omit & { [K in keyof RuxIconAssignmentTurnedIn & keyof RuxIconAssignmentTurnedInAttributes]?: RuxIconAssignmentTurnedIn[K] } & { [K in keyof RuxIconAssignmentTurnedIn & keyof RuxIconAssignmentTurnedInAttributes as `attr:${K}`]?: RuxIconAssignmentTurnedInAttributes[K] } & { [K in keyof RuxIconAssignmentTurnedIn & keyof RuxIconAssignmentTurnedInAttributes as `prop:${K}`]?: RuxIconAssignmentTurnedIn[K] }; "rux-icon-assistant": Omit & { [K in keyof RuxIconAssistant & keyof RuxIconAssistantAttributes]?: RuxIconAssistant[K] } & { [K in keyof RuxIconAssistant & keyof RuxIconAssistantAttributes as `attr:${K}`]?: RuxIconAssistantAttributes[K] } & { [K in keyof RuxIconAssistant & keyof RuxIconAssistantAttributes as `prop:${K}`]?: RuxIconAssistant[K] }; "rux-icon-assistant-photo": Omit & { [K in keyof RuxIconAssistantPhoto & keyof RuxIconAssistantPhotoAttributes]?: RuxIconAssistantPhoto[K] } & { [K in keyof RuxIconAssistantPhoto & keyof RuxIconAssistantPhotoAttributes as `attr:${K}`]?: RuxIconAssistantPhotoAttributes[K] } & { [K in keyof RuxIconAssistantPhoto & keyof RuxIconAssistantPhotoAttributes as `prop:${K}`]?: RuxIconAssistantPhoto[K] }; "rux-icon-attach-file": Omit & { [K in keyof RuxIconAttachFile & keyof RuxIconAttachFileAttributes]?: RuxIconAttachFile[K] } & { [K in keyof RuxIconAttachFile & keyof RuxIconAttachFileAttributes as `attr:${K}`]?: RuxIconAttachFileAttributes[K] } & { [K in keyof RuxIconAttachFile & keyof RuxIconAttachFileAttributes as `prop:${K}`]?: RuxIconAttachFile[K] }; "rux-icon-attach-money": Omit & { [K in keyof RuxIconAttachMoney & keyof RuxIconAttachMoneyAttributes]?: RuxIconAttachMoney[K] } & { [K in keyof RuxIconAttachMoney & keyof RuxIconAttachMoneyAttributes as `attr:${K}`]?: RuxIconAttachMoneyAttributes[K] } & { [K in keyof RuxIconAttachMoney & keyof RuxIconAttachMoneyAttributes as `prop:${K}`]?: RuxIconAttachMoney[K] }; "rux-icon-attachment": Omit & { [K in keyof RuxIconAttachment & keyof RuxIconAttachmentAttributes]?: RuxIconAttachment[K] } & { [K in keyof RuxIconAttachment & keyof RuxIconAttachmentAttributes as `attr:${K}`]?: RuxIconAttachmentAttributes[K] } & { [K in keyof RuxIconAttachment & keyof RuxIconAttachmentAttributes as `prop:${K}`]?: RuxIconAttachment[K] }; "rux-icon-audiotrack": Omit & { [K in keyof RuxIconAudiotrack & keyof RuxIconAudiotrackAttributes]?: RuxIconAudiotrack[K] } & { [K in keyof RuxIconAudiotrack & keyof RuxIconAudiotrackAttributes as `attr:${K}`]?: RuxIconAudiotrackAttributes[K] } & { [K in keyof RuxIconAudiotrack & keyof RuxIconAudiotrackAttributes as `prop:${K}`]?: RuxIconAudiotrack[K] }; "rux-icon-autorenew": Omit & { [K in keyof RuxIconAutorenew & keyof RuxIconAutorenewAttributes]?: RuxIconAutorenew[K] } & { [K in keyof RuxIconAutorenew & keyof RuxIconAutorenewAttributes as `attr:${K}`]?: RuxIconAutorenewAttributes[K] } & { [K in keyof RuxIconAutorenew & keyof RuxIconAutorenewAttributes as `prop:${K}`]?: RuxIconAutorenew[K] }; "rux-icon-av-timer": Omit & { [K in keyof RuxIconAvTimer & keyof RuxIconAvTimerAttributes]?: RuxIconAvTimer[K] } & { [K in keyof RuxIconAvTimer & keyof RuxIconAvTimerAttributes as `attr:${K}`]?: RuxIconAvTimerAttributes[K] } & { [K in keyof RuxIconAvTimer & keyof RuxIconAvTimerAttributes as `prop:${K}`]?: RuxIconAvTimer[K] }; "rux-icon-backspace": Omit & { [K in keyof RuxIconBackspace & keyof RuxIconBackspaceAttributes]?: RuxIconBackspace[K] } & { [K in keyof RuxIconBackspace & keyof RuxIconBackspaceAttributes as `attr:${K}`]?: RuxIconBackspaceAttributes[K] } & { [K in keyof RuxIconBackspace & keyof RuxIconBackspaceAttributes as `prop:${K}`]?: RuxIconBackspace[K] }; "rux-icon-backup": Omit & { [K in keyof RuxIconBackup & keyof RuxIconBackupAttributes]?: RuxIconBackup[K] } & { [K in keyof RuxIconBackup & keyof RuxIconBackupAttributes as `attr:${K}`]?: RuxIconBackupAttributes[K] } & { [K in keyof RuxIconBackup & keyof RuxIconBackupAttributes as `prop:${K}`]?: RuxIconBackup[K] }; "rux-icon-ballot": Omit & { [K in keyof RuxIconBallot & keyof RuxIconBallotAttributes]?: RuxIconBallot[K] } & { [K in keyof RuxIconBallot & keyof RuxIconBallotAttributes as `attr:${K}`]?: RuxIconBallotAttributes[K] } & { [K in keyof RuxIconBallot & keyof RuxIconBallotAttributes as `prop:${K}`]?: RuxIconBallot[K] }; "rux-icon-bar-chart": Omit & { [K in keyof RuxIconBarChart & keyof RuxIconBarChartAttributes]?: RuxIconBarChart[K] } & { [K in keyof RuxIconBarChart & keyof RuxIconBarChartAttributes as `attr:${K}`]?: RuxIconBarChartAttributes[K] } & { [K in keyof RuxIconBarChart & keyof RuxIconBarChartAttributes as `prop:${K}`]?: RuxIconBarChart[K] }; "rux-icon-battery-20": Omit & { [K in keyof RuxIconBattery20 & keyof RuxIconBattery20Attributes]?: RuxIconBattery20[K] } & { [K in keyof RuxIconBattery20 & keyof RuxIconBattery20Attributes as `attr:${K}`]?: RuxIconBattery20Attributes[K] } & { [K in keyof RuxIconBattery20 & keyof RuxIconBattery20Attributes as `prop:${K}`]?: RuxIconBattery20[K] }; "rux-icon-battery-30": Omit & { [K in keyof RuxIconBattery30 & keyof RuxIconBattery30Attributes]?: RuxIconBattery30[K] } & { [K in keyof RuxIconBattery30 & keyof RuxIconBattery30Attributes as `attr:${K}`]?: RuxIconBattery30Attributes[K] } & { [K in keyof RuxIconBattery30 & keyof RuxIconBattery30Attributes as `prop:${K}`]?: RuxIconBattery30[K] }; "rux-icon-battery-50": Omit & { [K in keyof RuxIconBattery50 & keyof RuxIconBattery50Attributes]?: RuxIconBattery50[K] } & { [K in keyof RuxIconBattery50 & keyof RuxIconBattery50Attributes as `attr:${K}`]?: RuxIconBattery50Attributes[K] } & { [K in keyof RuxIconBattery50 & keyof RuxIconBattery50Attributes as `prop:${K}`]?: RuxIconBattery50[K] }; "rux-icon-battery-60": Omit & { [K in keyof RuxIconBattery60 & keyof RuxIconBattery60Attributes]?: RuxIconBattery60[K] } & { [K in keyof RuxIconBattery60 & keyof RuxIconBattery60Attributes as `attr:${K}`]?: RuxIconBattery60Attributes[K] } & { [K in keyof RuxIconBattery60 & keyof RuxIconBattery60Attributes as `prop:${K}`]?: RuxIconBattery60[K] }; "rux-icon-battery-80": Omit & { [K in keyof RuxIconBattery80 & keyof RuxIconBattery80Attributes]?: RuxIconBattery80[K] } & { [K in keyof RuxIconBattery80 & keyof RuxIconBattery80Attributes as `attr:${K}`]?: RuxIconBattery80Attributes[K] } & { [K in keyof RuxIconBattery80 & keyof RuxIconBattery80Attributes as `prop:${K}`]?: RuxIconBattery80[K] }; "rux-icon-battery-90": Omit & { [K in keyof RuxIconBattery90 & keyof RuxIconBattery90Attributes]?: RuxIconBattery90[K] } & { [K in keyof RuxIconBattery90 & keyof RuxIconBattery90Attributes as `attr:${K}`]?: RuxIconBattery90Attributes[K] } & { [K in keyof RuxIconBattery90 & keyof RuxIconBattery90Attributes as `prop:${K}`]?: RuxIconBattery90[K] }; "rux-icon-battery-alert": Omit & { [K in keyof RuxIconBatteryAlert & keyof RuxIconBatteryAlertAttributes]?: RuxIconBatteryAlert[K] } & { [K in keyof RuxIconBatteryAlert & keyof RuxIconBatteryAlertAttributes as `attr:${K}`]?: RuxIconBatteryAlertAttributes[K] } & { [K in keyof RuxIconBatteryAlert & keyof RuxIconBatteryAlertAttributes as `prop:${K}`]?: RuxIconBatteryAlert[K] }; "rux-icon-battery-charging-20": Omit & { [K in keyof RuxIconBatteryCharging20 & keyof RuxIconBatteryCharging20Attributes]?: RuxIconBatteryCharging20[K] } & { [K in keyof RuxIconBatteryCharging20 & keyof RuxIconBatteryCharging20Attributes as `attr:${K}`]?: RuxIconBatteryCharging20Attributes[K] } & { [K in keyof RuxIconBatteryCharging20 & keyof RuxIconBatteryCharging20Attributes as `prop:${K}`]?: RuxIconBatteryCharging20[K] }; "rux-icon-battery-charging-30": Omit & { [K in keyof RuxIconBatteryCharging30 & keyof RuxIconBatteryCharging30Attributes]?: RuxIconBatteryCharging30[K] } & { [K in keyof RuxIconBatteryCharging30 & keyof RuxIconBatteryCharging30Attributes as `attr:${K}`]?: RuxIconBatteryCharging30Attributes[K] } & { [K in keyof RuxIconBatteryCharging30 & keyof RuxIconBatteryCharging30Attributes as `prop:${K}`]?: RuxIconBatteryCharging30[K] }; "rux-icon-battery-charging-50": Omit & { [K in keyof RuxIconBatteryCharging50 & keyof RuxIconBatteryCharging50Attributes]?: RuxIconBatteryCharging50[K] } & { [K in keyof RuxIconBatteryCharging50 & keyof RuxIconBatteryCharging50Attributes as `attr:${K}`]?: RuxIconBatteryCharging50Attributes[K] } & { [K in keyof RuxIconBatteryCharging50 & keyof RuxIconBatteryCharging50Attributes as `prop:${K}`]?: RuxIconBatteryCharging50[K] }; "rux-icon-battery-charging-60": Omit & { [K in keyof RuxIconBatteryCharging60 & keyof RuxIconBatteryCharging60Attributes]?: RuxIconBatteryCharging60[K] } & { [K in keyof RuxIconBatteryCharging60 & keyof RuxIconBatteryCharging60Attributes as `attr:${K}`]?: RuxIconBatteryCharging60Attributes[K] } & { [K in keyof RuxIconBatteryCharging60 & keyof RuxIconBatteryCharging60Attributes as `prop:${K}`]?: RuxIconBatteryCharging60[K] }; "rux-icon-battery-charging-80": Omit & { [K in keyof RuxIconBatteryCharging80 & keyof RuxIconBatteryCharging80Attributes]?: RuxIconBatteryCharging80[K] } & { [K in keyof RuxIconBatteryCharging80 & keyof RuxIconBatteryCharging80Attributes as `attr:${K}`]?: RuxIconBatteryCharging80Attributes[K] } & { [K in keyof RuxIconBatteryCharging80 & keyof RuxIconBatteryCharging80Attributes as `prop:${K}`]?: RuxIconBatteryCharging80[K] }; "rux-icon-battery-charging-90": Omit & { [K in keyof RuxIconBatteryCharging90 & keyof RuxIconBatteryCharging90Attributes]?: RuxIconBatteryCharging90[K] } & { [K in keyof RuxIconBatteryCharging90 & keyof RuxIconBatteryCharging90Attributes as `attr:${K}`]?: RuxIconBatteryCharging90Attributes[K] } & { [K in keyof RuxIconBatteryCharging90 & keyof RuxIconBatteryCharging90Attributes as `prop:${K}`]?: RuxIconBatteryCharging90[K] }; "rux-icon-battery-charging-full": Omit & { [K in keyof RuxIconBatteryChargingFull & keyof RuxIconBatteryChargingFullAttributes]?: RuxIconBatteryChargingFull[K] } & { [K in keyof RuxIconBatteryChargingFull & keyof RuxIconBatteryChargingFullAttributes as `attr:${K}`]?: RuxIconBatteryChargingFullAttributes[K] } & { [K in keyof RuxIconBatteryChargingFull & keyof RuxIconBatteryChargingFullAttributes as `prop:${K}`]?: RuxIconBatteryChargingFull[K] }; "rux-icon-battery-full": Omit & { [K in keyof RuxIconBatteryFull & keyof RuxIconBatteryFullAttributes]?: RuxIconBatteryFull[K] } & { [K in keyof RuxIconBatteryFull & keyof RuxIconBatteryFullAttributes as `attr:${K}`]?: RuxIconBatteryFullAttributes[K] } & { [K in keyof RuxIconBatteryFull & keyof RuxIconBatteryFullAttributes as `prop:${K}`]?: RuxIconBatteryFull[K] }; "rux-icon-battery-std": Omit & { [K in keyof RuxIconBatteryStd & keyof RuxIconBatteryStdAttributes]?: RuxIconBatteryStd[K] } & { [K in keyof RuxIconBatteryStd & keyof RuxIconBatteryStdAttributes as `attr:${K}`]?: RuxIconBatteryStdAttributes[K] } & { [K in keyof RuxIconBatteryStd & keyof RuxIconBatteryStdAttributes as `prop:${K}`]?: RuxIconBatteryStd[K] }; "rux-icon-battery-unknown": Omit & { [K in keyof RuxIconBatteryUnknown & keyof RuxIconBatteryUnknownAttributes]?: RuxIconBatteryUnknown[K] } & { [K in keyof RuxIconBatteryUnknown & keyof RuxIconBatteryUnknownAttributes as `attr:${K}`]?: RuxIconBatteryUnknownAttributes[K] } & { [K in keyof RuxIconBatteryUnknown & keyof RuxIconBatteryUnknownAttributes as `prop:${K}`]?: RuxIconBatteryUnknown[K] }; "rux-icon-beach-access": Omit & { [K in keyof RuxIconBeachAccess & keyof RuxIconBeachAccessAttributes]?: RuxIconBeachAccess[K] } & { [K in keyof RuxIconBeachAccess & keyof RuxIconBeachAccessAttributes as `attr:${K}`]?: RuxIconBeachAccessAttributes[K] } & { [K in keyof RuxIconBeachAccess & keyof RuxIconBeachAccessAttributes as `prop:${K}`]?: RuxIconBeachAccess[K] }; "rux-icon-beenhere": Omit & { [K in keyof RuxIconBeenhere & keyof RuxIconBeenhereAttributes]?: RuxIconBeenhere[K] } & { [K in keyof RuxIconBeenhere & keyof RuxIconBeenhereAttributes as `attr:${K}`]?: RuxIconBeenhereAttributes[K] } & { [K in keyof RuxIconBeenhere & keyof RuxIconBeenhereAttributes as `prop:${K}`]?: RuxIconBeenhere[K] }; "rux-icon-block": Omit & { [K in keyof RuxIconBlock & keyof RuxIconBlockAttributes]?: RuxIconBlock[K] } & { [K in keyof RuxIconBlock & keyof RuxIconBlockAttributes as `attr:${K}`]?: RuxIconBlockAttributes[K] } & { [K in keyof RuxIconBlock & keyof RuxIconBlockAttributes as `prop:${K}`]?: RuxIconBlock[K] }; "rux-icon-bluetooth": Omit & { [K in keyof RuxIconBluetooth & keyof RuxIconBluetoothAttributes]?: RuxIconBluetooth[K] } & { [K in keyof RuxIconBluetooth & keyof RuxIconBluetoothAttributes as `attr:${K}`]?: RuxIconBluetoothAttributes[K] } & { [K in keyof RuxIconBluetooth & keyof RuxIconBluetoothAttributes as `prop:${K}`]?: RuxIconBluetooth[K] }; "rux-icon-bluetooth-audio": Omit & { [K in keyof RuxIconBluetoothAudio & keyof RuxIconBluetoothAudioAttributes]?: RuxIconBluetoothAudio[K] } & { [K in keyof RuxIconBluetoothAudio & keyof RuxIconBluetoothAudioAttributes as `attr:${K}`]?: RuxIconBluetoothAudioAttributes[K] } & { [K in keyof RuxIconBluetoothAudio & keyof RuxIconBluetoothAudioAttributes as `prop:${K}`]?: RuxIconBluetoothAudio[K] }; "rux-icon-bluetooth-connected": Omit & { [K in keyof RuxIconBluetoothConnected & keyof RuxIconBluetoothConnectedAttributes]?: RuxIconBluetoothConnected[K] } & { [K in keyof RuxIconBluetoothConnected & keyof RuxIconBluetoothConnectedAttributes as `attr:${K}`]?: RuxIconBluetoothConnectedAttributes[K] } & { [K in keyof RuxIconBluetoothConnected & keyof RuxIconBluetoothConnectedAttributes as `prop:${K}`]?: RuxIconBluetoothConnected[K] }; "rux-icon-bluetooth-disabled": Omit & { [K in keyof RuxIconBluetoothDisabled & keyof RuxIconBluetoothDisabledAttributes]?: RuxIconBluetoothDisabled[K] } & { [K in keyof RuxIconBluetoothDisabled & keyof RuxIconBluetoothDisabledAttributes as `attr:${K}`]?: RuxIconBluetoothDisabledAttributes[K] } & { [K in keyof RuxIconBluetoothDisabled & keyof RuxIconBluetoothDisabledAttributes as `prop:${K}`]?: RuxIconBluetoothDisabled[K] }; "rux-icon-bluetooth-searching": Omit & { [K in keyof RuxIconBluetoothSearching & keyof RuxIconBluetoothSearchingAttributes]?: RuxIconBluetoothSearching[K] } & { [K in keyof RuxIconBluetoothSearching & keyof RuxIconBluetoothSearchingAttributes as `attr:${K}`]?: RuxIconBluetoothSearchingAttributes[K] } & { [K in keyof RuxIconBluetoothSearching & keyof RuxIconBluetoothSearchingAttributes as `prop:${K}`]?: RuxIconBluetoothSearching[K] }; "rux-icon-blur-circular": Omit & { [K in keyof RuxIconBlurCircular & keyof RuxIconBlurCircularAttributes]?: RuxIconBlurCircular[K] } & { [K in keyof RuxIconBlurCircular & keyof RuxIconBlurCircularAttributes as `attr:${K}`]?: RuxIconBlurCircularAttributes[K] } & { [K in keyof RuxIconBlurCircular & keyof RuxIconBlurCircularAttributes as `prop:${K}`]?: RuxIconBlurCircular[K] }; "rux-icon-blur-linear": Omit & { [K in keyof RuxIconBlurLinear & keyof RuxIconBlurLinearAttributes]?: RuxIconBlurLinear[K] } & { [K in keyof RuxIconBlurLinear & keyof RuxIconBlurLinearAttributes as `attr:${K}`]?: RuxIconBlurLinearAttributes[K] } & { [K in keyof RuxIconBlurLinear & keyof RuxIconBlurLinearAttributes as `prop:${K}`]?: RuxIconBlurLinear[K] }; "rux-icon-blur-off": Omit & { [K in keyof RuxIconBlurOff & keyof RuxIconBlurOffAttributes]?: RuxIconBlurOff[K] } & { [K in keyof RuxIconBlurOff & keyof RuxIconBlurOffAttributes as `attr:${K}`]?: RuxIconBlurOffAttributes[K] } & { [K in keyof RuxIconBlurOff & keyof RuxIconBlurOffAttributes as `prop:${K}`]?: RuxIconBlurOff[K] }; "rux-icon-blur-on": Omit & { [K in keyof RuxIconBlurOn & keyof RuxIconBlurOnAttributes]?: RuxIconBlurOn[K] } & { [K in keyof RuxIconBlurOn & keyof RuxIconBlurOnAttributes as `attr:${K}`]?: RuxIconBlurOnAttributes[K] } & { [K in keyof RuxIconBlurOn & keyof RuxIconBlurOnAttributes as `prop:${K}`]?: RuxIconBlurOn[K] }; "rux-icon-book": Omit & { [K in keyof RuxIconBook & keyof RuxIconBookAttributes]?: RuxIconBook[K] } & { [K in keyof RuxIconBook & keyof RuxIconBookAttributes as `attr:${K}`]?: RuxIconBookAttributes[K] } & { [K in keyof RuxIconBook & keyof RuxIconBookAttributes as `prop:${K}`]?: RuxIconBook[K] }; "rux-icon-bookmark": Omit & { [K in keyof RuxIconBookmark & keyof RuxIconBookmarkAttributes]?: RuxIconBookmark[K] } & { [K in keyof RuxIconBookmark & keyof RuxIconBookmarkAttributes as `attr:${K}`]?: RuxIconBookmarkAttributes[K] } & { [K in keyof RuxIconBookmark & keyof RuxIconBookmarkAttributes as `prop:${K}`]?: RuxIconBookmark[K] }; "rux-icon-bookmark-border": Omit & { [K in keyof RuxIconBookmarkBorder & keyof RuxIconBookmarkBorderAttributes]?: RuxIconBookmarkBorder[K] } & { [K in keyof RuxIconBookmarkBorder & keyof RuxIconBookmarkBorderAttributes as `attr:${K}`]?: RuxIconBookmarkBorderAttributes[K] } & { [K in keyof RuxIconBookmarkBorder & keyof RuxIconBookmarkBorderAttributes as `prop:${K}`]?: RuxIconBookmarkBorder[K] }; "rux-icon-bookmarks": Omit & { [K in keyof RuxIconBookmarks & keyof RuxIconBookmarksAttributes]?: RuxIconBookmarks[K] } & { [K in keyof RuxIconBookmarks & keyof RuxIconBookmarksAttributes as `attr:${K}`]?: RuxIconBookmarksAttributes[K] } & { [K in keyof RuxIconBookmarks & keyof RuxIconBookmarksAttributes as `prop:${K}`]?: RuxIconBookmarks[K] }; "rux-icon-border-all": Omit & { [K in keyof RuxIconBorderAll & keyof RuxIconBorderAllAttributes]?: RuxIconBorderAll[K] } & { [K in keyof RuxIconBorderAll & keyof RuxIconBorderAllAttributes as `attr:${K}`]?: RuxIconBorderAllAttributes[K] } & { [K in keyof RuxIconBorderAll & keyof RuxIconBorderAllAttributes as `prop:${K}`]?: RuxIconBorderAll[K] }; "rux-icon-border-bottom": Omit & { [K in keyof RuxIconBorderBottom & keyof RuxIconBorderBottomAttributes]?: RuxIconBorderBottom[K] } & { [K in keyof RuxIconBorderBottom & keyof RuxIconBorderBottomAttributes as `attr:${K}`]?: RuxIconBorderBottomAttributes[K] } & { [K in keyof RuxIconBorderBottom & keyof RuxIconBorderBottomAttributes as `prop:${K}`]?: RuxIconBorderBottom[K] }; "rux-icon-border-clear": Omit & { [K in keyof RuxIconBorderClear & keyof RuxIconBorderClearAttributes]?: RuxIconBorderClear[K] } & { [K in keyof RuxIconBorderClear & keyof RuxIconBorderClearAttributes as `attr:${K}`]?: RuxIconBorderClearAttributes[K] } & { [K in keyof RuxIconBorderClear & keyof RuxIconBorderClearAttributes as `prop:${K}`]?: RuxIconBorderClear[K] }; "rux-icon-border-color": Omit & { [K in keyof RuxIconBorderColor & keyof RuxIconBorderColorAttributes]?: RuxIconBorderColor[K] } & { [K in keyof RuxIconBorderColor & keyof RuxIconBorderColorAttributes as `attr:${K}`]?: RuxIconBorderColorAttributes[K] } & { [K in keyof RuxIconBorderColor & keyof RuxIconBorderColorAttributes as `prop:${K}`]?: RuxIconBorderColor[K] }; "rux-icon-border-horizontal": Omit & { [K in keyof RuxIconBorderHorizontal & keyof RuxIconBorderHorizontalAttributes]?: RuxIconBorderHorizontal[K] } & { [K in keyof RuxIconBorderHorizontal & keyof RuxIconBorderHorizontalAttributes as `attr:${K}`]?: RuxIconBorderHorizontalAttributes[K] } & { [K in keyof RuxIconBorderHorizontal & keyof RuxIconBorderHorizontalAttributes as `prop:${K}`]?: RuxIconBorderHorizontal[K] }; "rux-icon-border-inner": Omit & { [K in keyof RuxIconBorderInner & keyof RuxIconBorderInnerAttributes]?: RuxIconBorderInner[K] } & { [K in keyof RuxIconBorderInner & keyof RuxIconBorderInnerAttributes as `attr:${K}`]?: RuxIconBorderInnerAttributes[K] } & { [K in keyof RuxIconBorderInner & keyof RuxIconBorderInnerAttributes as `prop:${K}`]?: RuxIconBorderInner[K] }; "rux-icon-border-left": Omit & { [K in keyof RuxIconBorderLeft & keyof RuxIconBorderLeftAttributes]?: RuxIconBorderLeft[K] } & { [K in keyof RuxIconBorderLeft & keyof RuxIconBorderLeftAttributes as `attr:${K}`]?: RuxIconBorderLeftAttributes[K] } & { [K in keyof RuxIconBorderLeft & keyof RuxIconBorderLeftAttributes as `prop:${K}`]?: RuxIconBorderLeft[K] }; "rux-icon-border-outer": Omit & { [K in keyof RuxIconBorderOuter & keyof RuxIconBorderOuterAttributes]?: RuxIconBorderOuter[K] } & { [K in keyof RuxIconBorderOuter & keyof RuxIconBorderOuterAttributes as `attr:${K}`]?: RuxIconBorderOuterAttributes[K] } & { [K in keyof RuxIconBorderOuter & keyof RuxIconBorderOuterAttributes as `prop:${K}`]?: RuxIconBorderOuter[K] }; "rux-icon-border-right": Omit & { [K in keyof RuxIconBorderRight & keyof RuxIconBorderRightAttributes]?: RuxIconBorderRight[K] } & { [K in keyof RuxIconBorderRight & keyof RuxIconBorderRightAttributes as `attr:${K}`]?: RuxIconBorderRightAttributes[K] } & { [K in keyof RuxIconBorderRight & keyof RuxIconBorderRightAttributes as `prop:${K}`]?: RuxIconBorderRight[K] }; "rux-icon-border-style": Omit & { [K in keyof RuxIconBorderStyle & keyof RuxIconBorderStyleAttributes]?: RuxIconBorderStyle[K] } & { [K in keyof RuxIconBorderStyle & keyof RuxIconBorderStyleAttributes as `attr:${K}`]?: RuxIconBorderStyleAttributes[K] } & { [K in keyof RuxIconBorderStyle & keyof RuxIconBorderStyleAttributes as `prop:${K}`]?: RuxIconBorderStyle[K] }; "rux-icon-border-top": Omit & { [K in keyof RuxIconBorderTop & keyof RuxIconBorderTopAttributes]?: RuxIconBorderTop[K] } & { [K in keyof RuxIconBorderTop & keyof RuxIconBorderTopAttributes as `attr:${K}`]?: RuxIconBorderTopAttributes[K] } & { [K in keyof RuxIconBorderTop & keyof RuxIconBorderTopAttributes as `prop:${K}`]?: RuxIconBorderTop[K] }; "rux-icon-border-vertical": Omit & { [K in keyof RuxIconBorderVertical & keyof RuxIconBorderVerticalAttributes]?: RuxIconBorderVertical[K] } & { [K in keyof RuxIconBorderVertical & keyof RuxIconBorderVerticalAttributes as `attr:${K}`]?: RuxIconBorderVerticalAttributes[K] } & { [K in keyof RuxIconBorderVertical & keyof RuxIconBorderVerticalAttributes as `prop:${K}`]?: RuxIconBorderVertical[K] }; "rux-icon-branding-watermark": Omit & { [K in keyof RuxIconBrandingWatermark & keyof RuxIconBrandingWatermarkAttributes]?: RuxIconBrandingWatermark[K] } & { [K in keyof RuxIconBrandingWatermark & keyof RuxIconBrandingWatermarkAttributes as `attr:${K}`]?: RuxIconBrandingWatermarkAttributes[K] } & { [K in keyof RuxIconBrandingWatermark & keyof RuxIconBrandingWatermarkAttributes as `prop:${K}`]?: RuxIconBrandingWatermark[K] }; "rux-icon-brightness-1": Omit & { [K in keyof RuxIconBrightness1 & keyof RuxIconBrightness1Attributes]?: RuxIconBrightness1[K] } & { [K in keyof RuxIconBrightness1 & keyof RuxIconBrightness1Attributes as `attr:${K}`]?: RuxIconBrightness1Attributes[K] } & { [K in keyof RuxIconBrightness1 & keyof RuxIconBrightness1Attributes as `prop:${K}`]?: RuxIconBrightness1[K] }; "rux-icon-brightness-2": Omit & { [K in keyof RuxIconBrightness2 & keyof RuxIconBrightness2Attributes]?: RuxIconBrightness2[K] } & { [K in keyof RuxIconBrightness2 & keyof RuxIconBrightness2Attributes as `attr:${K}`]?: RuxIconBrightness2Attributes[K] } & { [K in keyof RuxIconBrightness2 & keyof RuxIconBrightness2Attributes as `prop:${K}`]?: RuxIconBrightness2[K] }; "rux-icon-brightness-3": Omit & { [K in keyof RuxIconBrightness3 & keyof RuxIconBrightness3Attributes]?: RuxIconBrightness3[K] } & { [K in keyof RuxIconBrightness3 & keyof RuxIconBrightness3Attributes as `attr:${K}`]?: RuxIconBrightness3Attributes[K] } & { [K in keyof RuxIconBrightness3 & keyof RuxIconBrightness3Attributes as `prop:${K}`]?: RuxIconBrightness3[K] }; "rux-icon-brightness-4": Omit & { [K in keyof RuxIconBrightness4 & keyof RuxIconBrightness4Attributes]?: RuxIconBrightness4[K] } & { [K in keyof RuxIconBrightness4 & keyof RuxIconBrightness4Attributes as `attr:${K}`]?: RuxIconBrightness4Attributes[K] } & { [K in keyof RuxIconBrightness4 & keyof RuxIconBrightness4Attributes as `prop:${K}`]?: RuxIconBrightness4[K] }; "rux-icon-brightness-5": Omit & { [K in keyof RuxIconBrightness5 & keyof RuxIconBrightness5Attributes]?: RuxIconBrightness5[K] } & { [K in keyof RuxIconBrightness5 & keyof RuxIconBrightness5Attributes as `attr:${K}`]?: RuxIconBrightness5Attributes[K] } & { [K in keyof RuxIconBrightness5 & keyof RuxIconBrightness5Attributes as `prop:${K}`]?: RuxIconBrightness5[K] }; "rux-icon-brightness-6": Omit & { [K in keyof RuxIconBrightness6 & keyof RuxIconBrightness6Attributes]?: RuxIconBrightness6[K] } & { [K in keyof RuxIconBrightness6 & keyof RuxIconBrightness6Attributes as `attr:${K}`]?: RuxIconBrightness6Attributes[K] } & { [K in keyof RuxIconBrightness6 & keyof RuxIconBrightness6Attributes as `prop:${K}`]?: RuxIconBrightness6[K] }; "rux-icon-brightness-7": Omit & { [K in keyof RuxIconBrightness7 & keyof RuxIconBrightness7Attributes]?: RuxIconBrightness7[K] } & { [K in keyof RuxIconBrightness7 & keyof RuxIconBrightness7Attributes as `attr:${K}`]?: RuxIconBrightness7Attributes[K] } & { [K in keyof RuxIconBrightness7 & keyof RuxIconBrightness7Attributes as `prop:${K}`]?: RuxIconBrightness7[K] }; "rux-icon-brightness-auto": Omit & { [K in keyof RuxIconBrightnessAuto & keyof RuxIconBrightnessAutoAttributes]?: RuxIconBrightnessAuto[K] } & { [K in keyof RuxIconBrightnessAuto & keyof RuxIconBrightnessAutoAttributes as `attr:${K}`]?: RuxIconBrightnessAutoAttributes[K] } & { [K in keyof RuxIconBrightnessAuto & keyof RuxIconBrightnessAutoAttributes as `prop:${K}`]?: RuxIconBrightnessAuto[K] }; "rux-icon-brightness-high": Omit & { [K in keyof RuxIconBrightnessHigh & keyof RuxIconBrightnessHighAttributes]?: RuxIconBrightnessHigh[K] } & { [K in keyof RuxIconBrightnessHigh & keyof RuxIconBrightnessHighAttributes as `attr:${K}`]?: RuxIconBrightnessHighAttributes[K] } & { [K in keyof RuxIconBrightnessHigh & keyof RuxIconBrightnessHighAttributes as `prop:${K}`]?: RuxIconBrightnessHigh[K] }; "rux-icon-brightness-low": Omit & { [K in keyof RuxIconBrightnessLow & keyof RuxIconBrightnessLowAttributes]?: RuxIconBrightnessLow[K] } & { [K in keyof RuxIconBrightnessLow & keyof RuxIconBrightnessLowAttributes as `attr:${K}`]?: RuxIconBrightnessLowAttributes[K] } & { [K in keyof RuxIconBrightnessLow & keyof RuxIconBrightnessLowAttributes as `prop:${K}`]?: RuxIconBrightnessLow[K] }; "rux-icon-brightness-medium": Omit & { [K in keyof RuxIconBrightnessMedium & keyof RuxIconBrightnessMediumAttributes]?: RuxIconBrightnessMedium[K] } & { [K in keyof RuxIconBrightnessMedium & keyof RuxIconBrightnessMediumAttributes as `attr:${K}`]?: RuxIconBrightnessMediumAttributes[K] } & { [K in keyof RuxIconBrightnessMedium & keyof RuxIconBrightnessMediumAttributes as `prop:${K}`]?: RuxIconBrightnessMedium[K] }; "rux-icon-broken-image": Omit & { [K in keyof RuxIconBrokenImage & keyof RuxIconBrokenImageAttributes]?: RuxIconBrokenImage[K] } & { [K in keyof RuxIconBrokenImage & keyof RuxIconBrokenImageAttributes as `attr:${K}`]?: RuxIconBrokenImageAttributes[K] } & { [K in keyof RuxIconBrokenImage & keyof RuxIconBrokenImageAttributes as `prop:${K}`]?: RuxIconBrokenImage[K] }; "rux-icon-brush": Omit & { [K in keyof RuxIconBrush & keyof RuxIconBrushAttributes]?: RuxIconBrush[K] } & { [K in keyof RuxIconBrush & keyof RuxIconBrushAttributes as `attr:${K}`]?: RuxIconBrushAttributes[K] } & { [K in keyof RuxIconBrush & keyof RuxIconBrushAttributes as `prop:${K}`]?: RuxIconBrush[K] }; "rux-icon-bubble-chart": Omit & { [K in keyof RuxIconBubbleChart & keyof RuxIconBubbleChartAttributes]?: RuxIconBubbleChart[K] } & { [K in keyof RuxIconBubbleChart & keyof RuxIconBubbleChartAttributes as `attr:${K}`]?: RuxIconBubbleChartAttributes[K] } & { [K in keyof RuxIconBubbleChart & keyof RuxIconBubbleChartAttributes as `prop:${K}`]?: RuxIconBubbleChart[K] }; "rux-icon-bug-report": Omit & { [K in keyof RuxIconBugReport & keyof RuxIconBugReportAttributes]?: RuxIconBugReport[K] } & { [K in keyof RuxIconBugReport & keyof RuxIconBugReportAttributes as `attr:${K}`]?: RuxIconBugReportAttributes[K] } & { [K in keyof RuxIconBugReport & keyof RuxIconBugReportAttributes as `prop:${K}`]?: RuxIconBugReport[K] }; "rux-icon-build": Omit & { [K in keyof RuxIconBuild & keyof RuxIconBuildAttributes]?: RuxIconBuild[K] } & { [K in keyof RuxIconBuild & keyof RuxIconBuildAttributes as `attr:${K}`]?: RuxIconBuildAttributes[K] } & { [K in keyof RuxIconBuild & keyof RuxIconBuildAttributes as `prop:${K}`]?: RuxIconBuild[K] }; "rux-icon-burst-mode": Omit & { [K in keyof RuxIconBurstMode & keyof RuxIconBurstModeAttributes]?: RuxIconBurstMode[K] } & { [K in keyof RuxIconBurstMode & keyof RuxIconBurstModeAttributes as `attr:${K}`]?: RuxIconBurstModeAttributes[K] } & { [K in keyof RuxIconBurstMode & keyof RuxIconBurstModeAttributes as `prop:${K}`]?: RuxIconBurstMode[K] }; "rux-icon-business": Omit & { [K in keyof RuxIconBusiness & keyof RuxIconBusinessAttributes]?: RuxIconBusiness[K] } & { [K in keyof RuxIconBusiness & keyof RuxIconBusinessAttributes as `attr:${K}`]?: RuxIconBusinessAttributes[K] } & { [K in keyof RuxIconBusiness & keyof RuxIconBusinessAttributes as `prop:${K}`]?: RuxIconBusiness[K] }; "rux-icon-business-center": Omit & { [K in keyof RuxIconBusinessCenter & keyof RuxIconBusinessCenterAttributes]?: RuxIconBusinessCenter[K] } & { [K in keyof RuxIconBusinessCenter & keyof RuxIconBusinessCenterAttributes as `attr:${K}`]?: RuxIconBusinessCenterAttributes[K] } & { [K in keyof RuxIconBusinessCenter & keyof RuxIconBusinessCenterAttributes as `prop:${K}`]?: RuxIconBusinessCenter[K] }; "rux-icon-cached": Omit & { [K in keyof RuxIconCached & keyof RuxIconCachedAttributes]?: RuxIconCached[K] } & { [K in keyof RuxIconCached & keyof RuxIconCachedAttributes as `attr:${K}`]?: RuxIconCachedAttributes[K] } & { [K in keyof RuxIconCached & keyof RuxIconCachedAttributes as `prop:${K}`]?: RuxIconCached[K] }; "rux-icon-cake": Omit & { [K in keyof RuxIconCake & keyof RuxIconCakeAttributes]?: RuxIconCake[K] } & { [K in keyof RuxIconCake & keyof RuxIconCakeAttributes as `attr:${K}`]?: RuxIconCakeAttributes[K] } & { [K in keyof RuxIconCake & keyof RuxIconCakeAttributes as `prop:${K}`]?: RuxIconCake[K] }; "rux-icon-calendar-today": Omit & { [K in keyof RuxIconCalendarToday & keyof RuxIconCalendarTodayAttributes]?: RuxIconCalendarToday[K] } & { [K in keyof RuxIconCalendarToday & keyof RuxIconCalendarTodayAttributes as `attr:${K}`]?: RuxIconCalendarTodayAttributes[K] } & { [K in keyof RuxIconCalendarToday & keyof RuxIconCalendarTodayAttributes as `prop:${K}`]?: RuxIconCalendarToday[K] }; "rux-icon-calendar-view-day": Omit & { [K in keyof RuxIconCalendarViewDay & keyof RuxIconCalendarViewDayAttributes]?: RuxIconCalendarViewDay[K] } & { [K in keyof RuxIconCalendarViewDay & keyof RuxIconCalendarViewDayAttributes as `attr:${K}`]?: RuxIconCalendarViewDayAttributes[K] } & { [K in keyof RuxIconCalendarViewDay & keyof RuxIconCalendarViewDayAttributes as `prop:${K}`]?: RuxIconCalendarViewDay[K] }; "rux-icon-call": Omit & { [K in keyof RuxIconCall & keyof RuxIconCallAttributes]?: RuxIconCall[K] } & { [K in keyof RuxIconCall & keyof RuxIconCallAttributes as `attr:${K}`]?: RuxIconCallAttributes[K] } & { [K in keyof RuxIconCall & keyof RuxIconCallAttributes as `prop:${K}`]?: RuxIconCall[K] }; "rux-icon-call-end": Omit & { [K in keyof RuxIconCallEnd & keyof RuxIconCallEndAttributes]?: RuxIconCallEnd[K] } & { [K in keyof RuxIconCallEnd & keyof RuxIconCallEndAttributes as `attr:${K}`]?: RuxIconCallEndAttributes[K] } & { [K in keyof RuxIconCallEnd & keyof RuxIconCallEndAttributes as `prop:${K}`]?: RuxIconCallEnd[K] }; "rux-icon-call-made": Omit & { [K in keyof RuxIconCallMade & keyof RuxIconCallMadeAttributes]?: RuxIconCallMade[K] } & { [K in keyof RuxIconCallMade & keyof RuxIconCallMadeAttributes as `attr:${K}`]?: RuxIconCallMadeAttributes[K] } & { [K in keyof RuxIconCallMade & keyof RuxIconCallMadeAttributes as `prop:${K}`]?: RuxIconCallMade[K] }; "rux-icon-call-merge": Omit & { [K in keyof RuxIconCallMerge & keyof RuxIconCallMergeAttributes]?: RuxIconCallMerge[K] } & { [K in keyof RuxIconCallMerge & keyof RuxIconCallMergeAttributes as `attr:${K}`]?: RuxIconCallMergeAttributes[K] } & { [K in keyof RuxIconCallMerge & keyof RuxIconCallMergeAttributes as `prop:${K}`]?: RuxIconCallMerge[K] }; "rux-icon-call-missed": Omit & { [K in keyof RuxIconCallMissed & keyof RuxIconCallMissedAttributes]?: RuxIconCallMissed[K] } & { [K in keyof RuxIconCallMissed & keyof RuxIconCallMissedAttributes as `attr:${K}`]?: RuxIconCallMissedAttributes[K] } & { [K in keyof RuxIconCallMissed & keyof RuxIconCallMissedAttributes as `prop:${K}`]?: RuxIconCallMissed[K] }; "rux-icon-call-missed-outgoing": Omit & { [K in keyof RuxIconCallMissedOutgoing & keyof RuxIconCallMissedOutgoingAttributes]?: RuxIconCallMissedOutgoing[K] } & { [K in keyof RuxIconCallMissedOutgoing & keyof RuxIconCallMissedOutgoingAttributes as `attr:${K}`]?: RuxIconCallMissedOutgoingAttributes[K] } & { [K in keyof RuxIconCallMissedOutgoing & keyof RuxIconCallMissedOutgoingAttributes as `prop:${K}`]?: RuxIconCallMissedOutgoing[K] }; "rux-icon-call-received": Omit & { [K in keyof RuxIconCallReceived & keyof RuxIconCallReceivedAttributes]?: RuxIconCallReceived[K] } & { [K in keyof RuxIconCallReceived & keyof RuxIconCallReceivedAttributes as `attr:${K}`]?: RuxIconCallReceivedAttributes[K] } & { [K in keyof RuxIconCallReceived & keyof RuxIconCallReceivedAttributes as `prop:${K}`]?: RuxIconCallReceived[K] }; "rux-icon-call-split": Omit & { [K in keyof RuxIconCallSplit & keyof RuxIconCallSplitAttributes]?: RuxIconCallSplit[K] } & { [K in keyof RuxIconCallSplit & keyof RuxIconCallSplitAttributes as `attr:${K}`]?: RuxIconCallSplitAttributes[K] } & { [K in keyof RuxIconCallSplit & keyof RuxIconCallSplitAttributes as `prop:${K}`]?: RuxIconCallSplit[K] }; "rux-icon-call-to-action": Omit & { [K in keyof RuxIconCallToAction & keyof RuxIconCallToActionAttributes]?: RuxIconCallToAction[K] } & { [K in keyof RuxIconCallToAction & keyof RuxIconCallToActionAttributes as `attr:${K}`]?: RuxIconCallToActionAttributes[K] } & { [K in keyof RuxIconCallToAction & keyof RuxIconCallToActionAttributes as `prop:${K}`]?: RuxIconCallToAction[K] }; "rux-icon-camera": Omit & { [K in keyof RuxIconCamera & keyof RuxIconCameraAttributes]?: RuxIconCamera[K] } & { [K in keyof RuxIconCamera & keyof RuxIconCameraAttributes as `attr:${K}`]?: RuxIconCameraAttributes[K] } & { [K in keyof RuxIconCamera & keyof RuxIconCameraAttributes as `prop:${K}`]?: RuxIconCamera[K] }; "rux-icon-camera-alt": Omit & { [K in keyof RuxIconCameraAlt & keyof RuxIconCameraAltAttributes]?: RuxIconCameraAlt[K] } & { [K in keyof RuxIconCameraAlt & keyof RuxIconCameraAltAttributes as `attr:${K}`]?: RuxIconCameraAltAttributes[K] } & { [K in keyof RuxIconCameraAlt & keyof RuxIconCameraAltAttributes as `prop:${K}`]?: RuxIconCameraAlt[K] }; "rux-icon-camera-enhance": Omit & { [K in keyof RuxIconCameraEnhance & keyof RuxIconCameraEnhanceAttributes]?: RuxIconCameraEnhance[K] } & { [K in keyof RuxIconCameraEnhance & keyof RuxIconCameraEnhanceAttributes as `attr:${K}`]?: RuxIconCameraEnhanceAttributes[K] } & { [K in keyof RuxIconCameraEnhance & keyof RuxIconCameraEnhanceAttributes as `prop:${K}`]?: RuxIconCameraEnhance[K] }; "rux-icon-camera-front": Omit & { [K in keyof RuxIconCameraFront & keyof RuxIconCameraFrontAttributes]?: RuxIconCameraFront[K] } & { [K in keyof RuxIconCameraFront & keyof RuxIconCameraFrontAttributes as `attr:${K}`]?: RuxIconCameraFrontAttributes[K] } & { [K in keyof RuxIconCameraFront & keyof RuxIconCameraFrontAttributes as `prop:${K}`]?: RuxIconCameraFront[K] }; "rux-icon-camera-rear": Omit & { [K in keyof RuxIconCameraRear & keyof RuxIconCameraRearAttributes]?: RuxIconCameraRear[K] } & { [K in keyof RuxIconCameraRear & keyof RuxIconCameraRearAttributes as `attr:${K}`]?: RuxIconCameraRearAttributes[K] } & { [K in keyof RuxIconCameraRear & keyof RuxIconCameraRearAttributes as `prop:${K}`]?: RuxIconCameraRear[K] }; "rux-icon-camera-roll": Omit & { [K in keyof RuxIconCameraRoll & keyof RuxIconCameraRollAttributes]?: RuxIconCameraRoll[K] } & { [K in keyof RuxIconCameraRoll & keyof RuxIconCameraRollAttributes as `attr:${K}`]?: RuxIconCameraRollAttributes[K] } & { [K in keyof RuxIconCameraRoll & keyof RuxIconCameraRollAttributes as `prop:${K}`]?: RuxIconCameraRoll[K] }; "rux-icon-cancel": Omit & { [K in keyof RuxIconCancel & keyof RuxIconCancelAttributes]?: RuxIconCancel[K] } & { [K in keyof RuxIconCancel & keyof RuxIconCancelAttributes as `attr:${K}`]?: RuxIconCancelAttributes[K] } & { [K in keyof RuxIconCancel & keyof RuxIconCancelAttributes as `prop:${K}`]?: RuxIconCancel[K] }; "rux-icon-cancel-presentation": Omit & { [K in keyof RuxIconCancelPresentation & keyof RuxIconCancelPresentationAttributes]?: RuxIconCancelPresentation[K] } & { [K in keyof RuxIconCancelPresentation & keyof RuxIconCancelPresentationAttributes as `attr:${K}`]?: RuxIconCancelPresentationAttributes[K] } & { [K in keyof RuxIconCancelPresentation & keyof RuxIconCancelPresentationAttributes as `prop:${K}`]?: RuxIconCancelPresentation[K] }; "rux-icon-card-giftcard": Omit & { [K in keyof RuxIconCardGiftcard & keyof RuxIconCardGiftcardAttributes]?: RuxIconCardGiftcard[K] } & { [K in keyof RuxIconCardGiftcard & keyof RuxIconCardGiftcardAttributes as `attr:${K}`]?: RuxIconCardGiftcardAttributes[K] } & { [K in keyof RuxIconCardGiftcard & keyof RuxIconCardGiftcardAttributes as `prop:${K}`]?: RuxIconCardGiftcard[K] }; "rux-icon-card-membership": Omit & { [K in keyof RuxIconCardMembership & keyof RuxIconCardMembershipAttributes]?: RuxIconCardMembership[K] } & { [K in keyof RuxIconCardMembership & keyof RuxIconCardMembershipAttributes as `attr:${K}`]?: RuxIconCardMembershipAttributes[K] } & { [K in keyof RuxIconCardMembership & keyof RuxIconCardMembershipAttributes as `prop:${K}`]?: RuxIconCardMembership[K] }; "rux-icon-card-travel": Omit & { [K in keyof RuxIconCardTravel & keyof RuxIconCardTravelAttributes]?: RuxIconCardTravel[K] } & { [K in keyof RuxIconCardTravel & keyof RuxIconCardTravelAttributes as `attr:${K}`]?: RuxIconCardTravelAttributes[K] } & { [K in keyof RuxIconCardTravel & keyof RuxIconCardTravelAttributes as `prop:${K}`]?: RuxIconCardTravel[K] }; "rux-icon-casino": Omit & { [K in keyof RuxIconCasino & keyof RuxIconCasinoAttributes]?: RuxIconCasino[K] } & { [K in keyof RuxIconCasino & keyof RuxIconCasinoAttributes as `attr:${K}`]?: RuxIconCasinoAttributes[K] } & { [K in keyof RuxIconCasino & keyof RuxIconCasinoAttributes as `prop:${K}`]?: RuxIconCasino[K] }; "rux-icon-cast": Omit & { [K in keyof RuxIconCast & keyof RuxIconCastAttributes]?: RuxIconCast[K] } & { [K in keyof RuxIconCast & keyof RuxIconCastAttributes as `attr:${K}`]?: RuxIconCastAttributes[K] } & { [K in keyof RuxIconCast & keyof RuxIconCastAttributes as `prop:${K}`]?: RuxIconCast[K] }; "rux-icon-cast-connected": Omit & { [K in keyof RuxIconCastConnected & keyof RuxIconCastConnectedAttributes]?: RuxIconCastConnected[K] } & { [K in keyof RuxIconCastConnected & keyof RuxIconCastConnectedAttributes as `attr:${K}`]?: RuxIconCastConnectedAttributes[K] } & { [K in keyof RuxIconCastConnected & keyof RuxIconCastConnectedAttributes as `prop:${K}`]?: RuxIconCastConnected[K] }; "rux-icon-cast-for-education": Omit & { [K in keyof RuxIconCastForEducation & keyof RuxIconCastForEducationAttributes]?: RuxIconCastForEducation[K] } & { [K in keyof RuxIconCastForEducation & keyof RuxIconCastForEducationAttributes as `attr:${K}`]?: RuxIconCastForEducationAttributes[K] } & { [K in keyof RuxIconCastForEducation & keyof RuxIconCastForEducationAttributes as `prop:${K}`]?: RuxIconCastForEducation[K] }; "rux-icon-category": Omit & { [K in keyof RuxIconCategory & keyof RuxIconCategoryAttributes]?: RuxIconCategory[K] } & { [K in keyof RuxIconCategory & keyof RuxIconCategoryAttributes as `attr:${K}`]?: RuxIconCategoryAttributes[K] } & { [K in keyof RuxIconCategory & keyof RuxIconCategoryAttributes as `prop:${K}`]?: RuxIconCategory[K] }; "rux-icon-cell-wifi": Omit & { [K in keyof RuxIconCellWifi & keyof RuxIconCellWifiAttributes]?: RuxIconCellWifi[K] } & { [K in keyof RuxIconCellWifi & keyof RuxIconCellWifiAttributes as `attr:${K}`]?: RuxIconCellWifiAttributes[K] } & { [K in keyof RuxIconCellWifi & keyof RuxIconCellWifiAttributes as `prop:${K}`]?: RuxIconCellWifi[K] }; "rux-icon-center-focus-strong": Omit & { [K in keyof RuxIconCenterFocusStrong & keyof RuxIconCenterFocusStrongAttributes]?: RuxIconCenterFocusStrong[K] } & { [K in keyof RuxIconCenterFocusStrong & keyof RuxIconCenterFocusStrongAttributes as `attr:${K}`]?: RuxIconCenterFocusStrongAttributes[K] } & { [K in keyof RuxIconCenterFocusStrong & keyof RuxIconCenterFocusStrongAttributes as `prop:${K}`]?: RuxIconCenterFocusStrong[K] }; "rux-icon-center-focus-weak": Omit & { [K in keyof RuxIconCenterFocusWeak & keyof RuxIconCenterFocusWeakAttributes]?: RuxIconCenterFocusWeak[K] } & { [K in keyof RuxIconCenterFocusWeak & keyof RuxIconCenterFocusWeakAttributes as `attr:${K}`]?: RuxIconCenterFocusWeakAttributes[K] } & { [K in keyof RuxIconCenterFocusWeak & keyof RuxIconCenterFocusWeakAttributes as `prop:${K}`]?: RuxIconCenterFocusWeak[K] }; "rux-icon-change-history": Omit & { [K in keyof RuxIconChangeHistory & keyof RuxIconChangeHistoryAttributes]?: RuxIconChangeHistory[K] } & { [K in keyof RuxIconChangeHistory & keyof RuxIconChangeHistoryAttributes as `attr:${K}`]?: RuxIconChangeHistoryAttributes[K] } & { [K in keyof RuxIconChangeHistory & keyof RuxIconChangeHistoryAttributes as `prop:${K}`]?: RuxIconChangeHistory[K] }; "rux-icon-chat": Omit & { [K in keyof RuxIconChat & keyof RuxIconChatAttributes]?: RuxIconChat[K] } & { [K in keyof RuxIconChat & keyof RuxIconChatAttributes as `attr:${K}`]?: RuxIconChatAttributes[K] } & { [K in keyof RuxIconChat & keyof RuxIconChatAttributes as `prop:${K}`]?: RuxIconChat[K] }; "rux-icon-chat-bubble": Omit & { [K in keyof RuxIconChatBubble & keyof RuxIconChatBubbleAttributes]?: RuxIconChatBubble[K] } & { [K in keyof RuxIconChatBubble & keyof RuxIconChatBubbleAttributes as `attr:${K}`]?: RuxIconChatBubbleAttributes[K] } & { [K in keyof RuxIconChatBubble & keyof RuxIconChatBubbleAttributes as `prop:${K}`]?: RuxIconChatBubble[K] }; "rux-icon-chat-bubble-outline": Omit & { [K in keyof RuxIconChatBubbleOutline & keyof RuxIconChatBubbleOutlineAttributes]?: RuxIconChatBubbleOutline[K] } & { [K in keyof RuxIconChatBubbleOutline & keyof RuxIconChatBubbleOutlineAttributes as `attr:${K}`]?: RuxIconChatBubbleOutlineAttributes[K] } & { [K in keyof RuxIconChatBubbleOutline & keyof RuxIconChatBubbleOutlineAttributes as `prop:${K}`]?: RuxIconChatBubbleOutline[K] }; "rux-icon-check": Omit & { [K in keyof RuxIconCheck & keyof RuxIconCheckAttributes]?: RuxIconCheck[K] } & { [K in keyof RuxIconCheck & keyof RuxIconCheckAttributes as `attr:${K}`]?: RuxIconCheckAttributes[K] } & { [K in keyof RuxIconCheck & keyof RuxIconCheckAttributes as `prop:${K}`]?: RuxIconCheck[K] }; "rux-icon-check-box": Omit & { [K in keyof RuxIconCheckBox & keyof RuxIconCheckBoxAttributes]?: RuxIconCheckBox[K] } & { [K in keyof RuxIconCheckBox & keyof RuxIconCheckBoxAttributes as `attr:${K}`]?: RuxIconCheckBoxAttributes[K] } & { [K in keyof RuxIconCheckBox & keyof RuxIconCheckBoxAttributes as `prop:${K}`]?: RuxIconCheckBox[K] }; "rux-icon-check-box-outline-blank": Omit & { [K in keyof RuxIconCheckBoxOutlineBlank & keyof RuxIconCheckBoxOutlineBlankAttributes]?: RuxIconCheckBoxOutlineBlank[K] } & { [K in keyof RuxIconCheckBoxOutlineBlank & keyof RuxIconCheckBoxOutlineBlankAttributes as `attr:${K}`]?: RuxIconCheckBoxOutlineBlankAttributes[K] } & { [K in keyof RuxIconCheckBoxOutlineBlank & keyof RuxIconCheckBoxOutlineBlankAttributes as `prop:${K}`]?: RuxIconCheckBoxOutlineBlank[K] }; "rux-icon-check-circle": Omit & { [K in keyof RuxIconCheckCircle & keyof RuxIconCheckCircleAttributes]?: RuxIconCheckCircle[K] } & { [K in keyof RuxIconCheckCircle & keyof RuxIconCheckCircleAttributes as `attr:${K}`]?: RuxIconCheckCircleAttributes[K] } & { [K in keyof RuxIconCheckCircle & keyof RuxIconCheckCircleAttributes as `prop:${K}`]?: RuxIconCheckCircle[K] }; "rux-icon-check-circle-outline": Omit & { [K in keyof RuxIconCheckCircleOutline & keyof RuxIconCheckCircleOutlineAttributes]?: RuxIconCheckCircleOutline[K] } & { [K in keyof RuxIconCheckCircleOutline & keyof RuxIconCheckCircleOutlineAttributes as `attr:${K}`]?: RuxIconCheckCircleOutlineAttributes[K] } & { [K in keyof RuxIconCheckCircleOutline & keyof RuxIconCheckCircleOutlineAttributes as `prop:${K}`]?: RuxIconCheckCircleOutline[K] }; "rux-icon-chevron-left": Omit & { [K in keyof RuxIconChevronLeft & keyof RuxIconChevronLeftAttributes]?: RuxIconChevronLeft[K] } & { [K in keyof RuxIconChevronLeft & keyof RuxIconChevronLeftAttributes as `attr:${K}`]?: RuxIconChevronLeftAttributes[K] } & { [K in keyof RuxIconChevronLeft & keyof RuxIconChevronLeftAttributes as `prop:${K}`]?: RuxIconChevronLeft[K] }; "rux-icon-chevron-right": Omit & { [K in keyof RuxIconChevronRight & keyof RuxIconChevronRightAttributes]?: RuxIconChevronRight[K] } & { [K in keyof RuxIconChevronRight & keyof RuxIconChevronRightAttributes as `attr:${K}`]?: RuxIconChevronRightAttributes[K] } & { [K in keyof RuxIconChevronRight & keyof RuxIconChevronRightAttributes as `prop:${K}`]?: RuxIconChevronRight[K] }; "rux-icon-child-care": Omit & { [K in keyof RuxIconChildCare & keyof RuxIconChildCareAttributes]?: RuxIconChildCare[K] } & { [K in keyof RuxIconChildCare & keyof RuxIconChildCareAttributes as `attr:${K}`]?: RuxIconChildCareAttributes[K] } & { [K in keyof RuxIconChildCare & keyof RuxIconChildCareAttributes as `prop:${K}`]?: RuxIconChildCare[K] }; "rux-icon-child-friendly": Omit & { [K in keyof RuxIconChildFriendly & keyof RuxIconChildFriendlyAttributes]?: RuxIconChildFriendly[K] } & { [K in keyof RuxIconChildFriendly & keyof RuxIconChildFriendlyAttributes as `attr:${K}`]?: RuxIconChildFriendlyAttributes[K] } & { [K in keyof RuxIconChildFriendly & keyof RuxIconChildFriendlyAttributes as `prop:${K}`]?: RuxIconChildFriendly[K] }; "rux-icon-chrome-reader-mode": Omit & { [K in keyof RuxIconChromeReaderMode & keyof RuxIconChromeReaderModeAttributes]?: RuxIconChromeReaderMode[K] } & { [K in keyof RuxIconChromeReaderMode & keyof RuxIconChromeReaderModeAttributes as `attr:${K}`]?: RuxIconChromeReaderModeAttributes[K] } & { [K in keyof RuxIconChromeReaderMode & keyof RuxIconChromeReaderModeAttributes as `prop:${K}`]?: RuxIconChromeReaderMode[K] }; "rux-icon-class": Omit & { [K in keyof RuxIconClass & keyof RuxIconClassAttributes]?: RuxIconClass[K] } & { [K in keyof RuxIconClass & keyof RuxIconClassAttributes as `attr:${K}`]?: RuxIconClassAttributes[K] } & { [K in keyof RuxIconClass & keyof RuxIconClassAttributes as `prop:${K}`]?: RuxIconClass[K] }; "rux-icon-clear": Omit & { [K in keyof RuxIconClear & keyof RuxIconClearAttributes]?: RuxIconClear[K] } & { [K in keyof RuxIconClear & keyof RuxIconClearAttributes as `attr:${K}`]?: RuxIconClearAttributes[K] } & { [K in keyof RuxIconClear & keyof RuxIconClearAttributes as `prop:${K}`]?: RuxIconClear[K] }; "rux-icon-clear-all": Omit & { [K in keyof RuxIconClearAll & keyof RuxIconClearAllAttributes]?: RuxIconClearAll[K] } & { [K in keyof RuxIconClearAll & keyof RuxIconClearAllAttributes as `attr:${K}`]?: RuxIconClearAllAttributes[K] } & { [K in keyof RuxIconClearAll & keyof RuxIconClearAllAttributes as `prop:${K}`]?: RuxIconClearAll[K] }; "rux-icon-close": Omit & { [K in keyof RuxIconClose & keyof RuxIconCloseAttributes]?: RuxIconClose[K] } & { [K in keyof RuxIconClose & keyof RuxIconCloseAttributes as `attr:${K}`]?: RuxIconCloseAttributes[K] } & { [K in keyof RuxIconClose & keyof RuxIconCloseAttributes as `prop:${K}`]?: RuxIconClose[K] }; "rux-icon-closed-caption": Omit & { [K in keyof RuxIconClosedCaption & keyof RuxIconClosedCaptionAttributes]?: RuxIconClosedCaption[K] } & { [K in keyof RuxIconClosedCaption & keyof RuxIconClosedCaptionAttributes as `attr:${K}`]?: RuxIconClosedCaptionAttributes[K] } & { [K in keyof RuxIconClosedCaption & keyof RuxIconClosedCaptionAttributes as `prop:${K}`]?: RuxIconClosedCaption[K] }; "rux-icon-cloud": Omit & { [K in keyof RuxIconCloud & keyof RuxIconCloudAttributes]?: RuxIconCloud[K] } & { [K in keyof RuxIconCloud & keyof RuxIconCloudAttributes as `attr:${K}`]?: RuxIconCloudAttributes[K] } & { [K in keyof RuxIconCloud & keyof RuxIconCloudAttributes as `prop:${K}`]?: RuxIconCloud[K] }; "rux-icon-cloud-circle": Omit & { [K in keyof RuxIconCloudCircle & keyof RuxIconCloudCircleAttributes]?: RuxIconCloudCircle[K] } & { [K in keyof RuxIconCloudCircle & keyof RuxIconCloudCircleAttributes as `attr:${K}`]?: RuxIconCloudCircleAttributes[K] } & { [K in keyof RuxIconCloudCircle & keyof RuxIconCloudCircleAttributes as `prop:${K}`]?: RuxIconCloudCircle[K] }; "rux-icon-cloud-done": Omit & { [K in keyof RuxIconCloudDone & keyof RuxIconCloudDoneAttributes]?: RuxIconCloudDone[K] } & { [K in keyof RuxIconCloudDone & keyof RuxIconCloudDoneAttributes as `attr:${K}`]?: RuxIconCloudDoneAttributes[K] } & { [K in keyof RuxIconCloudDone & keyof RuxIconCloudDoneAttributes as `prop:${K}`]?: RuxIconCloudDone[K] }; "rux-icon-cloud-download": Omit & { [K in keyof RuxIconCloudDownload & keyof RuxIconCloudDownloadAttributes]?: RuxIconCloudDownload[K] } & { [K in keyof RuxIconCloudDownload & keyof RuxIconCloudDownloadAttributes as `attr:${K}`]?: RuxIconCloudDownloadAttributes[K] } & { [K in keyof RuxIconCloudDownload & keyof RuxIconCloudDownloadAttributes as `prop:${K}`]?: RuxIconCloudDownload[K] }; "rux-icon-cloud-off": Omit & { [K in keyof RuxIconCloudOff & keyof RuxIconCloudOffAttributes]?: RuxIconCloudOff[K] } & { [K in keyof RuxIconCloudOff & keyof RuxIconCloudOffAttributes as `attr:${K}`]?: RuxIconCloudOffAttributes[K] } & { [K in keyof RuxIconCloudOff & keyof RuxIconCloudOffAttributes as `prop:${K}`]?: RuxIconCloudOff[K] }; "rux-icon-cloud-queue": Omit & { [K in keyof RuxIconCloudQueue & keyof RuxIconCloudQueueAttributes]?: RuxIconCloudQueue[K] } & { [K in keyof RuxIconCloudQueue & keyof RuxIconCloudQueueAttributes as `attr:${K}`]?: RuxIconCloudQueueAttributes[K] } & { [K in keyof RuxIconCloudQueue & keyof RuxIconCloudQueueAttributes as `prop:${K}`]?: RuxIconCloudQueue[K] }; "rux-icon-cloud-upload": Omit & { [K in keyof RuxIconCloudUpload & keyof RuxIconCloudUploadAttributes]?: RuxIconCloudUpload[K] } & { [K in keyof RuxIconCloudUpload & keyof RuxIconCloudUploadAttributes as `attr:${K}`]?: RuxIconCloudUploadAttributes[K] } & { [K in keyof RuxIconCloudUpload & keyof RuxIconCloudUploadAttributes as `prop:${K}`]?: RuxIconCloudUpload[K] }; "rux-icon-code": Omit & { [K in keyof RuxIconCode & keyof RuxIconCodeAttributes]?: RuxIconCode[K] } & { [K in keyof RuxIconCode & keyof RuxIconCodeAttributes as `attr:${K}`]?: RuxIconCodeAttributes[K] } & { [K in keyof RuxIconCode & keyof RuxIconCodeAttributes as `prop:${K}`]?: RuxIconCode[K] }; "rux-icon-collections": Omit & { [K in keyof RuxIconCollections & keyof RuxIconCollectionsAttributes]?: RuxIconCollections[K] } & { [K in keyof RuxIconCollections & keyof RuxIconCollectionsAttributes as `attr:${K}`]?: RuxIconCollectionsAttributes[K] } & { [K in keyof RuxIconCollections & keyof RuxIconCollectionsAttributes as `prop:${K}`]?: RuxIconCollections[K] }; "rux-icon-collections-bookmark": Omit & { [K in keyof RuxIconCollectionsBookmark & keyof RuxIconCollectionsBookmarkAttributes]?: RuxIconCollectionsBookmark[K] } & { [K in keyof RuxIconCollectionsBookmark & keyof RuxIconCollectionsBookmarkAttributes as `attr:${K}`]?: RuxIconCollectionsBookmarkAttributes[K] } & { [K in keyof RuxIconCollectionsBookmark & keyof RuxIconCollectionsBookmarkAttributes as `prop:${K}`]?: RuxIconCollectionsBookmark[K] }; "rux-icon-color-lens": Omit & { [K in keyof RuxIconColorLens & keyof RuxIconColorLensAttributes]?: RuxIconColorLens[K] } & { [K in keyof RuxIconColorLens & keyof RuxIconColorLensAttributes as `attr:${K}`]?: RuxIconColorLensAttributes[K] } & { [K in keyof RuxIconColorLens & keyof RuxIconColorLensAttributes as `prop:${K}`]?: RuxIconColorLens[K] }; "rux-icon-colorize": Omit & { [K in keyof RuxIconColorize & keyof RuxIconColorizeAttributes]?: RuxIconColorize[K] } & { [K in keyof RuxIconColorize & keyof RuxIconColorizeAttributes as `attr:${K}`]?: RuxIconColorizeAttributes[K] } & { [K in keyof RuxIconColorize & keyof RuxIconColorizeAttributes as `prop:${K}`]?: RuxIconColorize[K] }; "rux-icon-comment": Omit & { [K in keyof RuxIconComment & keyof RuxIconCommentAttributes]?: RuxIconComment[K] } & { [K in keyof RuxIconComment & keyof RuxIconCommentAttributes as `attr:${K}`]?: RuxIconCommentAttributes[K] } & { [K in keyof RuxIconComment & keyof RuxIconCommentAttributes as `prop:${K}`]?: RuxIconComment[K] }; "rux-icon-commute": Omit & { [K in keyof RuxIconCommute & keyof RuxIconCommuteAttributes]?: RuxIconCommute[K] } & { [K in keyof RuxIconCommute & keyof RuxIconCommuteAttributes as `attr:${K}`]?: RuxIconCommuteAttributes[K] } & { [K in keyof RuxIconCommute & keyof RuxIconCommuteAttributes as `prop:${K}`]?: RuxIconCommute[K] }; "rux-icon-compare": Omit & { [K in keyof RuxIconCompare & keyof RuxIconCompareAttributes]?: RuxIconCompare[K] } & { [K in keyof RuxIconCompare & keyof RuxIconCompareAttributes as `attr:${K}`]?: RuxIconCompareAttributes[K] } & { [K in keyof RuxIconCompare & keyof RuxIconCompareAttributes as `prop:${K}`]?: RuxIconCompare[K] }; "rux-icon-compare-arrows": Omit & { [K in keyof RuxIconCompareArrows & keyof RuxIconCompareArrowsAttributes]?: RuxIconCompareArrows[K] } & { [K in keyof RuxIconCompareArrows & keyof RuxIconCompareArrowsAttributes as `attr:${K}`]?: RuxIconCompareArrowsAttributes[K] } & { [K in keyof RuxIconCompareArrows & keyof RuxIconCompareArrowsAttributes as `prop:${K}`]?: RuxIconCompareArrows[K] }; "rux-icon-compass-calibration": Omit & { [K in keyof RuxIconCompassCalibration & keyof RuxIconCompassCalibrationAttributes]?: RuxIconCompassCalibration[K] } & { [K in keyof RuxIconCompassCalibration & keyof RuxIconCompassCalibrationAttributes as `attr:${K}`]?: RuxIconCompassCalibrationAttributes[K] } & { [K in keyof RuxIconCompassCalibration & keyof RuxIconCompassCalibrationAttributes as `prop:${K}`]?: RuxIconCompassCalibration[K] }; "rux-icon-computer": Omit & { [K in keyof RuxIconComputer & keyof RuxIconComputerAttributes]?: RuxIconComputer[K] } & { [K in keyof RuxIconComputer & keyof RuxIconComputerAttributes as `attr:${K}`]?: RuxIconComputerAttributes[K] } & { [K in keyof RuxIconComputer & keyof RuxIconComputerAttributes as `prop:${K}`]?: RuxIconComputer[K] }; "rux-icon-confirmation-number": Omit & { [K in keyof RuxIconConfirmationNumber & keyof RuxIconConfirmationNumberAttributes]?: RuxIconConfirmationNumber[K] } & { [K in keyof RuxIconConfirmationNumber & keyof RuxIconConfirmationNumberAttributes as `attr:${K}`]?: RuxIconConfirmationNumberAttributes[K] } & { [K in keyof RuxIconConfirmationNumber & keyof RuxIconConfirmationNumberAttributes as `prop:${K}`]?: RuxIconConfirmationNumber[K] }; "rux-icon-contact-mail": Omit & { [K in keyof RuxIconContactMail & keyof RuxIconContactMailAttributes]?: RuxIconContactMail[K] } & { [K in keyof RuxIconContactMail & keyof RuxIconContactMailAttributes as `attr:${K}`]?: RuxIconContactMailAttributes[K] } & { [K in keyof RuxIconContactMail & keyof RuxIconContactMailAttributes as `prop:${K}`]?: RuxIconContactMail[K] }; "rux-icon-contact-phone": Omit & { [K in keyof RuxIconContactPhone & keyof RuxIconContactPhoneAttributes]?: RuxIconContactPhone[K] } & { [K in keyof RuxIconContactPhone & keyof RuxIconContactPhoneAttributes as `attr:${K}`]?: RuxIconContactPhoneAttributes[K] } & { [K in keyof RuxIconContactPhone & keyof RuxIconContactPhoneAttributes as `prop:${K}`]?: RuxIconContactPhone[K] }; "rux-icon-contact-support": Omit & { [K in keyof RuxIconContactSupport & keyof RuxIconContactSupportAttributes]?: RuxIconContactSupport[K] } & { [K in keyof RuxIconContactSupport & keyof RuxIconContactSupportAttributes as `attr:${K}`]?: RuxIconContactSupportAttributes[K] } & { [K in keyof RuxIconContactSupport & keyof RuxIconContactSupportAttributes as `prop:${K}`]?: RuxIconContactSupport[K] }; "rux-icon-contacts": Omit & { [K in keyof RuxIconContacts & keyof RuxIconContactsAttributes]?: RuxIconContacts[K] } & { [K in keyof RuxIconContacts & keyof RuxIconContactsAttributes as `attr:${K}`]?: RuxIconContactsAttributes[K] } & { [K in keyof RuxIconContacts & keyof RuxIconContactsAttributes as `prop:${K}`]?: RuxIconContacts[K] }; "rux-icon-control-camera": Omit & { [K in keyof RuxIconControlCamera & keyof RuxIconControlCameraAttributes]?: RuxIconControlCamera[K] } & { [K in keyof RuxIconControlCamera & keyof RuxIconControlCameraAttributes as `attr:${K}`]?: RuxIconControlCameraAttributes[K] } & { [K in keyof RuxIconControlCamera & keyof RuxIconControlCameraAttributes as `prop:${K}`]?: RuxIconControlCamera[K] }; "rux-icon-control-point": Omit & { [K in keyof RuxIconControlPoint & keyof RuxIconControlPointAttributes]?: RuxIconControlPoint[K] } & { [K in keyof RuxIconControlPoint & keyof RuxIconControlPointAttributes as `attr:${K}`]?: RuxIconControlPointAttributes[K] } & { [K in keyof RuxIconControlPoint & keyof RuxIconControlPointAttributes as `prop:${K}`]?: RuxIconControlPoint[K] }; "rux-icon-control-point-duplicate": Omit & { [K in keyof RuxIconControlPointDuplicate & keyof RuxIconControlPointDuplicateAttributes]?: RuxIconControlPointDuplicate[K] } & { [K in keyof RuxIconControlPointDuplicate & keyof RuxIconControlPointDuplicateAttributes as `attr:${K}`]?: RuxIconControlPointDuplicateAttributes[K] } & { [K in keyof RuxIconControlPointDuplicate & keyof RuxIconControlPointDuplicateAttributes as `prop:${K}`]?: RuxIconControlPointDuplicate[K] }; "rux-icon-copyright": Omit & { [K in keyof RuxIconCopyright & keyof RuxIconCopyrightAttributes]?: RuxIconCopyright[K] } & { [K in keyof RuxIconCopyright & keyof RuxIconCopyrightAttributes as `attr:${K}`]?: RuxIconCopyrightAttributes[K] } & { [K in keyof RuxIconCopyright & keyof RuxIconCopyrightAttributes as `prop:${K}`]?: RuxIconCopyright[K] }; "rux-icon-create": Omit & { [K in keyof RuxIconCreate & keyof RuxIconCreateAttributes]?: RuxIconCreate[K] } & { [K in keyof RuxIconCreate & keyof RuxIconCreateAttributes as `attr:${K}`]?: RuxIconCreateAttributes[K] } & { [K in keyof RuxIconCreate & keyof RuxIconCreateAttributes as `prop:${K}`]?: RuxIconCreate[K] }; "rux-icon-create-new-folder": Omit & { [K in keyof RuxIconCreateNewFolder & keyof RuxIconCreateNewFolderAttributes]?: RuxIconCreateNewFolder[K] } & { [K in keyof RuxIconCreateNewFolder & keyof RuxIconCreateNewFolderAttributes as `attr:${K}`]?: RuxIconCreateNewFolderAttributes[K] } & { [K in keyof RuxIconCreateNewFolder & keyof RuxIconCreateNewFolderAttributes as `prop:${K}`]?: RuxIconCreateNewFolder[K] }; "rux-icon-credit-card": Omit & { [K in keyof RuxIconCreditCard & keyof RuxIconCreditCardAttributes]?: RuxIconCreditCard[K] } & { [K in keyof RuxIconCreditCard & keyof RuxIconCreditCardAttributes as `attr:${K}`]?: RuxIconCreditCardAttributes[K] } & { [K in keyof RuxIconCreditCard & keyof RuxIconCreditCardAttributes as `prop:${K}`]?: RuxIconCreditCard[K] }; "rux-icon-crop": Omit & { [K in keyof RuxIconCrop & keyof RuxIconCropAttributes]?: RuxIconCrop[K] } & { [K in keyof RuxIconCrop & keyof RuxIconCropAttributes as `attr:${K}`]?: RuxIconCropAttributes[K] } & { [K in keyof RuxIconCrop & keyof RuxIconCropAttributes as `prop:${K}`]?: RuxIconCrop[K] }; "rux-icon-crop-16-9": Omit & { [K in keyof RuxIconCrop169 & keyof RuxIconCrop169Attributes]?: RuxIconCrop169[K] } & { [K in keyof RuxIconCrop169 & keyof RuxIconCrop169Attributes as `attr:${K}`]?: RuxIconCrop169Attributes[K] } & { [K in keyof RuxIconCrop169 & keyof RuxIconCrop169Attributes as `prop:${K}`]?: RuxIconCrop169[K] }; "rux-icon-crop-3-2": Omit & { [K in keyof RuxIconCrop32 & keyof RuxIconCrop32Attributes]?: RuxIconCrop32[K] } & { [K in keyof RuxIconCrop32 & keyof RuxIconCrop32Attributes as `attr:${K}`]?: RuxIconCrop32Attributes[K] } & { [K in keyof RuxIconCrop32 & keyof RuxIconCrop32Attributes as `prop:${K}`]?: RuxIconCrop32[K] }; "rux-icon-crop-5-4": Omit & { [K in keyof RuxIconCrop54 & keyof RuxIconCrop54Attributes]?: RuxIconCrop54[K] } & { [K in keyof RuxIconCrop54 & keyof RuxIconCrop54Attributes as `attr:${K}`]?: RuxIconCrop54Attributes[K] } & { [K in keyof RuxIconCrop54 & keyof RuxIconCrop54Attributes as `prop:${K}`]?: RuxIconCrop54[K] }; "rux-icon-crop-7-5": Omit & { [K in keyof RuxIconCrop75 & keyof RuxIconCrop75Attributes]?: RuxIconCrop75[K] } & { [K in keyof RuxIconCrop75 & keyof RuxIconCrop75Attributes as `attr:${K}`]?: RuxIconCrop75Attributes[K] } & { [K in keyof RuxIconCrop75 & keyof RuxIconCrop75Attributes as `prop:${K}`]?: RuxIconCrop75[K] }; "rux-icon-crop-din": Omit & { [K in keyof RuxIconCropDin & keyof RuxIconCropDinAttributes]?: RuxIconCropDin[K] } & { [K in keyof RuxIconCropDin & keyof RuxIconCropDinAttributes as `attr:${K}`]?: RuxIconCropDinAttributes[K] } & { [K in keyof RuxIconCropDin & keyof RuxIconCropDinAttributes as `prop:${K}`]?: RuxIconCropDin[K] }; "rux-icon-crop-free": Omit & { [K in keyof RuxIconCropFree & keyof RuxIconCropFreeAttributes]?: RuxIconCropFree[K] } & { [K in keyof RuxIconCropFree & keyof RuxIconCropFreeAttributes as `attr:${K}`]?: RuxIconCropFreeAttributes[K] } & { [K in keyof RuxIconCropFree & keyof RuxIconCropFreeAttributes as `prop:${K}`]?: RuxIconCropFree[K] }; "rux-icon-crop-landscape": Omit & { [K in keyof RuxIconCropLandscape & keyof RuxIconCropLandscapeAttributes]?: RuxIconCropLandscape[K] } & { [K in keyof RuxIconCropLandscape & keyof RuxIconCropLandscapeAttributes as `attr:${K}`]?: RuxIconCropLandscapeAttributes[K] } & { [K in keyof RuxIconCropLandscape & keyof RuxIconCropLandscapeAttributes as `prop:${K}`]?: RuxIconCropLandscape[K] }; "rux-icon-crop-original": Omit & { [K in keyof RuxIconCropOriginal & keyof RuxIconCropOriginalAttributes]?: RuxIconCropOriginal[K] } & { [K in keyof RuxIconCropOriginal & keyof RuxIconCropOriginalAttributes as `attr:${K}`]?: RuxIconCropOriginalAttributes[K] } & { [K in keyof RuxIconCropOriginal & keyof RuxIconCropOriginalAttributes as `prop:${K}`]?: RuxIconCropOriginal[K] }; "rux-icon-crop-portrait": Omit & { [K in keyof RuxIconCropPortrait & keyof RuxIconCropPortraitAttributes]?: RuxIconCropPortrait[K] } & { [K in keyof RuxIconCropPortrait & keyof RuxIconCropPortraitAttributes as `attr:${K}`]?: RuxIconCropPortraitAttributes[K] } & { [K in keyof RuxIconCropPortrait & keyof RuxIconCropPortraitAttributes as `prop:${K}`]?: RuxIconCropPortrait[K] }; "rux-icon-crop-rotate": Omit & { [K in keyof RuxIconCropRotate & keyof RuxIconCropRotateAttributes]?: RuxIconCropRotate[K] } & { [K in keyof RuxIconCropRotate & keyof RuxIconCropRotateAttributes as `attr:${K}`]?: RuxIconCropRotateAttributes[K] } & { [K in keyof RuxIconCropRotate & keyof RuxIconCropRotateAttributes as `prop:${K}`]?: RuxIconCropRotate[K] }; "rux-icon-crop-square": Omit & { [K in keyof RuxIconCropSquare & keyof RuxIconCropSquareAttributes]?: RuxIconCropSquare[K] } & { [K in keyof RuxIconCropSquare & keyof RuxIconCropSquareAttributes as `attr:${K}`]?: RuxIconCropSquareAttributes[K] } & { [K in keyof RuxIconCropSquare & keyof RuxIconCropSquareAttributes as `prop:${K}`]?: RuxIconCropSquare[K] }; "rux-icon-dashboard": Omit & { [K in keyof RuxIconDashboard & keyof RuxIconDashboardAttributes]?: RuxIconDashboard[K] } & { [K in keyof RuxIconDashboard & keyof RuxIconDashboardAttributes as `attr:${K}`]?: RuxIconDashboardAttributes[K] } & { [K in keyof RuxIconDashboard & keyof RuxIconDashboardAttributes as `prop:${K}`]?: RuxIconDashboard[K] }; "rux-icon-data-usage": Omit & { [K in keyof RuxIconDataUsage & keyof RuxIconDataUsageAttributes]?: RuxIconDataUsage[K] } & { [K in keyof RuxIconDataUsage & keyof RuxIconDataUsageAttributes as `attr:${K}`]?: RuxIconDataUsageAttributes[K] } & { [K in keyof RuxIconDataUsage & keyof RuxIconDataUsageAttributes as `prop:${K}`]?: RuxIconDataUsage[K] }; "rux-icon-date-range": Omit & { [K in keyof RuxIconDateRange & keyof RuxIconDateRangeAttributes]?: RuxIconDateRange[K] } & { [K in keyof RuxIconDateRange & keyof RuxIconDateRangeAttributes as `attr:${K}`]?: RuxIconDateRangeAttributes[K] } & { [K in keyof RuxIconDateRange & keyof RuxIconDateRangeAttributes as `prop:${K}`]?: RuxIconDateRange[K] }; "rux-icon-dehaze": Omit & { [K in keyof RuxIconDehaze & keyof RuxIconDehazeAttributes]?: RuxIconDehaze[K] } & { [K in keyof RuxIconDehaze & keyof RuxIconDehazeAttributes as `attr:${K}`]?: RuxIconDehazeAttributes[K] } & { [K in keyof RuxIconDehaze & keyof RuxIconDehazeAttributes as `prop:${K}`]?: RuxIconDehaze[K] }; "rux-icon-delete": Omit & { [K in keyof RuxIconDelete & keyof RuxIconDeleteAttributes]?: RuxIconDelete[K] } & { [K in keyof RuxIconDelete & keyof RuxIconDeleteAttributes as `attr:${K}`]?: RuxIconDeleteAttributes[K] } & { [K in keyof RuxIconDelete & keyof RuxIconDeleteAttributes as `prop:${K}`]?: RuxIconDelete[K] }; "rux-icon-delete-forever": Omit & { [K in keyof RuxIconDeleteForever & keyof RuxIconDeleteForeverAttributes]?: RuxIconDeleteForever[K] } & { [K in keyof RuxIconDeleteForever & keyof RuxIconDeleteForeverAttributes as `attr:${K}`]?: RuxIconDeleteForeverAttributes[K] } & { [K in keyof RuxIconDeleteForever & keyof RuxIconDeleteForeverAttributes as `prop:${K}`]?: RuxIconDeleteForever[K] }; "rux-icon-delete-outline": Omit & { [K in keyof RuxIconDeleteOutline & keyof RuxIconDeleteOutlineAttributes]?: RuxIconDeleteOutline[K] } & { [K in keyof RuxIconDeleteOutline & keyof RuxIconDeleteOutlineAttributes as `attr:${K}`]?: RuxIconDeleteOutlineAttributes[K] } & { [K in keyof RuxIconDeleteOutline & keyof RuxIconDeleteOutlineAttributes as `prop:${K}`]?: RuxIconDeleteOutline[K] }; "rux-icon-delete-sweep": Omit & { [K in keyof RuxIconDeleteSweep & keyof RuxIconDeleteSweepAttributes]?: RuxIconDeleteSweep[K] } & { [K in keyof RuxIconDeleteSweep & keyof RuxIconDeleteSweepAttributes as `attr:${K}`]?: RuxIconDeleteSweepAttributes[K] } & { [K in keyof RuxIconDeleteSweep & keyof RuxIconDeleteSweepAttributes as `prop:${K}`]?: RuxIconDeleteSweep[K] }; "rux-icon-departure-board": Omit & { [K in keyof RuxIconDepartureBoard & keyof RuxIconDepartureBoardAttributes]?: RuxIconDepartureBoard[K] } & { [K in keyof RuxIconDepartureBoard & keyof RuxIconDepartureBoardAttributes as `attr:${K}`]?: RuxIconDepartureBoardAttributes[K] } & { [K in keyof RuxIconDepartureBoard & keyof RuxIconDepartureBoardAttributes as `prop:${K}`]?: RuxIconDepartureBoard[K] }; "rux-icon-description": Omit & { [K in keyof RuxIconDescription & keyof RuxIconDescriptionAttributes]?: RuxIconDescription[K] } & { [K in keyof RuxIconDescription & keyof RuxIconDescriptionAttributes as `attr:${K}`]?: RuxIconDescriptionAttributes[K] } & { [K in keyof RuxIconDescription & keyof RuxIconDescriptionAttributes as `prop:${K}`]?: RuxIconDescription[K] }; "rux-icon-desktop-access-disabled": Omit & { [K in keyof RuxIconDesktopAccessDisabled & keyof RuxIconDesktopAccessDisabledAttributes]?: RuxIconDesktopAccessDisabled[K] } & { [K in keyof RuxIconDesktopAccessDisabled & keyof RuxIconDesktopAccessDisabledAttributes as `attr:${K}`]?: RuxIconDesktopAccessDisabledAttributes[K] } & { [K in keyof RuxIconDesktopAccessDisabled & keyof RuxIconDesktopAccessDisabledAttributes as `prop:${K}`]?: RuxIconDesktopAccessDisabled[K] }; "rux-icon-desktop-mac": Omit & { [K in keyof RuxIconDesktopMac & keyof RuxIconDesktopMacAttributes]?: RuxIconDesktopMac[K] } & { [K in keyof RuxIconDesktopMac & keyof RuxIconDesktopMacAttributes as `attr:${K}`]?: RuxIconDesktopMacAttributes[K] } & { [K in keyof RuxIconDesktopMac & keyof RuxIconDesktopMacAttributes as `prop:${K}`]?: RuxIconDesktopMac[K] }; "rux-icon-desktop-windows": Omit & { [K in keyof RuxIconDesktopWindows & keyof RuxIconDesktopWindowsAttributes]?: RuxIconDesktopWindows[K] } & { [K in keyof RuxIconDesktopWindows & keyof RuxIconDesktopWindowsAttributes as `attr:${K}`]?: RuxIconDesktopWindowsAttributes[K] } & { [K in keyof RuxIconDesktopWindows & keyof RuxIconDesktopWindowsAttributes as `prop:${K}`]?: RuxIconDesktopWindows[K] }; "rux-icon-details": Omit & { [K in keyof RuxIconDetails & keyof RuxIconDetailsAttributes]?: RuxIconDetails[K] } & { [K in keyof RuxIconDetails & keyof RuxIconDetailsAttributes as `attr:${K}`]?: RuxIconDetailsAttributes[K] } & { [K in keyof RuxIconDetails & keyof RuxIconDetailsAttributes as `prop:${K}`]?: RuxIconDetails[K] }; "rux-icon-developer-board": Omit & { [K in keyof RuxIconDeveloperBoard & keyof RuxIconDeveloperBoardAttributes]?: RuxIconDeveloperBoard[K] } & { [K in keyof RuxIconDeveloperBoard & keyof RuxIconDeveloperBoardAttributes as `attr:${K}`]?: RuxIconDeveloperBoardAttributes[K] } & { [K in keyof RuxIconDeveloperBoard & keyof RuxIconDeveloperBoardAttributes as `prop:${K}`]?: RuxIconDeveloperBoard[K] }; "rux-icon-developer-mode": Omit & { [K in keyof RuxIconDeveloperMode & keyof RuxIconDeveloperModeAttributes]?: RuxIconDeveloperMode[K] } & { [K in keyof RuxIconDeveloperMode & keyof RuxIconDeveloperModeAttributes as `attr:${K}`]?: RuxIconDeveloperModeAttributes[K] } & { [K in keyof RuxIconDeveloperMode & keyof RuxIconDeveloperModeAttributes as `prop:${K}`]?: RuxIconDeveloperMode[K] }; "rux-icon-device-hub": Omit & { [K in keyof RuxIconDeviceHub & keyof RuxIconDeviceHubAttributes]?: RuxIconDeviceHub[K] } & { [K in keyof RuxIconDeviceHub & keyof RuxIconDeviceHubAttributes as `attr:${K}`]?: RuxIconDeviceHubAttributes[K] } & { [K in keyof RuxIconDeviceHub & keyof RuxIconDeviceHubAttributes as `prop:${K}`]?: RuxIconDeviceHub[K] }; "rux-icon-device-unknown": Omit & { [K in keyof RuxIconDeviceUnknown & keyof RuxIconDeviceUnknownAttributes]?: RuxIconDeviceUnknown[K] } & { [K in keyof RuxIconDeviceUnknown & keyof RuxIconDeviceUnknownAttributes as `attr:${K}`]?: RuxIconDeviceUnknownAttributes[K] } & { [K in keyof RuxIconDeviceUnknown & keyof RuxIconDeviceUnknownAttributes as `prop:${K}`]?: RuxIconDeviceUnknown[K] }; "rux-icon-devices": Omit & { [K in keyof RuxIconDevices & keyof RuxIconDevicesAttributes]?: RuxIconDevices[K] } & { [K in keyof RuxIconDevices & keyof RuxIconDevicesAttributes as `attr:${K}`]?: RuxIconDevicesAttributes[K] } & { [K in keyof RuxIconDevices & keyof RuxIconDevicesAttributes as `prop:${K}`]?: RuxIconDevices[K] }; "rux-icon-devices-other": Omit & { [K in keyof RuxIconDevicesOther & keyof RuxIconDevicesOtherAttributes]?: RuxIconDevicesOther[K] } & { [K in keyof RuxIconDevicesOther & keyof RuxIconDevicesOtherAttributes as `attr:${K}`]?: RuxIconDevicesOtherAttributes[K] } & { [K in keyof RuxIconDevicesOther & keyof RuxIconDevicesOtherAttributes as `prop:${K}`]?: RuxIconDevicesOther[K] }; "rux-icon-dialer-sip": Omit & { [K in keyof RuxIconDialerSip & keyof RuxIconDialerSipAttributes]?: RuxIconDialerSip[K] } & { [K in keyof RuxIconDialerSip & keyof RuxIconDialerSipAttributes as `attr:${K}`]?: RuxIconDialerSipAttributes[K] } & { [K in keyof RuxIconDialerSip & keyof RuxIconDialerSipAttributes as `prop:${K}`]?: RuxIconDialerSip[K] }; "rux-icon-dialpad": Omit & { [K in keyof RuxIconDialpad & keyof RuxIconDialpadAttributes]?: RuxIconDialpad[K] } & { [K in keyof RuxIconDialpad & keyof RuxIconDialpadAttributes as `attr:${K}`]?: RuxIconDialpadAttributes[K] } & { [K in keyof RuxIconDialpad & keyof RuxIconDialpadAttributes as `prop:${K}`]?: RuxIconDialpad[K] }; "rux-icon-directions": Omit & { [K in keyof RuxIconDirections & keyof RuxIconDirectionsAttributes]?: RuxIconDirections[K] } & { [K in keyof RuxIconDirections & keyof RuxIconDirectionsAttributes as `attr:${K}`]?: RuxIconDirectionsAttributes[K] } & { [K in keyof RuxIconDirections & keyof RuxIconDirectionsAttributes as `prop:${K}`]?: RuxIconDirections[K] }; "rux-icon-directions-bike": Omit & { [K in keyof RuxIconDirectionsBike & keyof RuxIconDirectionsBikeAttributes]?: RuxIconDirectionsBike[K] } & { [K in keyof RuxIconDirectionsBike & keyof RuxIconDirectionsBikeAttributes as `attr:${K}`]?: RuxIconDirectionsBikeAttributes[K] } & { [K in keyof RuxIconDirectionsBike & keyof RuxIconDirectionsBikeAttributes as `prop:${K}`]?: RuxIconDirectionsBike[K] }; "rux-icon-directions-boat": Omit & { [K in keyof RuxIconDirectionsBoat & keyof RuxIconDirectionsBoatAttributes]?: RuxIconDirectionsBoat[K] } & { [K in keyof RuxIconDirectionsBoat & keyof RuxIconDirectionsBoatAttributes as `attr:${K}`]?: RuxIconDirectionsBoatAttributes[K] } & { [K in keyof RuxIconDirectionsBoat & keyof RuxIconDirectionsBoatAttributes as `prop:${K}`]?: RuxIconDirectionsBoat[K] }; "rux-icon-directions-bus": Omit & { [K in keyof RuxIconDirectionsBus & keyof RuxIconDirectionsBusAttributes]?: RuxIconDirectionsBus[K] } & { [K in keyof RuxIconDirectionsBus & keyof RuxIconDirectionsBusAttributes as `attr:${K}`]?: RuxIconDirectionsBusAttributes[K] } & { [K in keyof RuxIconDirectionsBus & keyof RuxIconDirectionsBusAttributes as `prop:${K}`]?: RuxIconDirectionsBus[K] }; "rux-icon-directions-car": Omit & { [K in keyof RuxIconDirectionsCar & keyof RuxIconDirectionsCarAttributes]?: RuxIconDirectionsCar[K] } & { [K in keyof RuxIconDirectionsCar & keyof RuxIconDirectionsCarAttributes as `attr:${K}`]?: RuxIconDirectionsCarAttributes[K] } & { [K in keyof RuxIconDirectionsCar & keyof RuxIconDirectionsCarAttributes as `prop:${K}`]?: RuxIconDirectionsCar[K] }; "rux-icon-directions-railway": Omit & { [K in keyof RuxIconDirectionsRailway & keyof RuxIconDirectionsRailwayAttributes]?: RuxIconDirectionsRailway[K] } & { [K in keyof RuxIconDirectionsRailway & keyof RuxIconDirectionsRailwayAttributes as `attr:${K}`]?: RuxIconDirectionsRailwayAttributes[K] } & { [K in keyof RuxIconDirectionsRailway & keyof RuxIconDirectionsRailwayAttributes as `prop:${K}`]?: RuxIconDirectionsRailway[K] }; "rux-icon-directions-run": Omit & { [K in keyof RuxIconDirectionsRun & keyof RuxIconDirectionsRunAttributes]?: RuxIconDirectionsRun[K] } & { [K in keyof RuxIconDirectionsRun & keyof RuxIconDirectionsRunAttributes as `attr:${K}`]?: RuxIconDirectionsRunAttributes[K] } & { [K in keyof RuxIconDirectionsRun & keyof RuxIconDirectionsRunAttributes as `prop:${K}`]?: RuxIconDirectionsRun[K] }; "rux-icon-directions-subway": Omit & { [K in keyof RuxIconDirectionsSubway & keyof RuxIconDirectionsSubwayAttributes]?: RuxIconDirectionsSubway[K] } & { [K in keyof RuxIconDirectionsSubway & keyof RuxIconDirectionsSubwayAttributes as `attr:${K}`]?: RuxIconDirectionsSubwayAttributes[K] } & { [K in keyof RuxIconDirectionsSubway & keyof RuxIconDirectionsSubwayAttributes as `prop:${K}`]?: RuxIconDirectionsSubway[K] }; "rux-icon-directions-transit": Omit & { [K in keyof RuxIconDirectionsTransit & keyof RuxIconDirectionsTransitAttributes]?: RuxIconDirectionsTransit[K] } & { [K in keyof RuxIconDirectionsTransit & keyof RuxIconDirectionsTransitAttributes as `attr:${K}`]?: RuxIconDirectionsTransitAttributes[K] } & { [K in keyof RuxIconDirectionsTransit & keyof RuxIconDirectionsTransitAttributes as `prop:${K}`]?: RuxIconDirectionsTransit[K] }; "rux-icon-directions-walk": Omit & { [K in keyof RuxIconDirectionsWalk & keyof RuxIconDirectionsWalkAttributes]?: RuxIconDirectionsWalk[K] } & { [K in keyof RuxIconDirectionsWalk & keyof RuxIconDirectionsWalkAttributes as `attr:${K}`]?: RuxIconDirectionsWalkAttributes[K] } & { [K in keyof RuxIconDirectionsWalk & keyof RuxIconDirectionsWalkAttributes as `prop:${K}`]?: RuxIconDirectionsWalk[K] }; "rux-icon-disc-full": Omit & { [K in keyof RuxIconDiscFull & keyof RuxIconDiscFullAttributes]?: RuxIconDiscFull[K] } & { [K in keyof RuxIconDiscFull & keyof RuxIconDiscFullAttributes as `attr:${K}`]?: RuxIconDiscFullAttributes[K] } & { [K in keyof RuxIconDiscFull & keyof RuxIconDiscFullAttributes as `prop:${K}`]?: RuxIconDiscFull[K] }; "rux-icon-dns": Omit & { [K in keyof RuxIconDns & keyof RuxIconDnsAttributes]?: RuxIconDns[K] } & { [K in keyof RuxIconDns & keyof RuxIconDnsAttributes as `attr:${K}`]?: RuxIconDnsAttributes[K] } & { [K in keyof RuxIconDns & keyof RuxIconDnsAttributes as `prop:${K}`]?: RuxIconDns[K] }; "rux-icon-dock": Omit & { [K in keyof RuxIconDock & keyof RuxIconDockAttributes]?: RuxIconDock[K] } & { [K in keyof RuxIconDock & keyof RuxIconDockAttributes as `attr:${K}`]?: RuxIconDockAttributes[K] } & { [K in keyof RuxIconDock & keyof RuxIconDockAttributes as `prop:${K}`]?: RuxIconDock[K] }; "rux-icon-domain": Omit & { [K in keyof RuxIconDomain & keyof RuxIconDomainAttributes]?: RuxIconDomain[K] } & { [K in keyof RuxIconDomain & keyof RuxIconDomainAttributes as `attr:${K}`]?: RuxIconDomainAttributes[K] } & { [K in keyof RuxIconDomain & keyof RuxIconDomainAttributes as `prop:${K}`]?: RuxIconDomain[K] }; "rux-icon-domain-disabled": Omit & { [K in keyof RuxIconDomainDisabled & keyof RuxIconDomainDisabledAttributes]?: RuxIconDomainDisabled[K] } & { [K in keyof RuxIconDomainDisabled & keyof RuxIconDomainDisabledAttributes as `attr:${K}`]?: RuxIconDomainDisabledAttributes[K] } & { [K in keyof RuxIconDomainDisabled & keyof RuxIconDomainDisabledAttributes as `prop:${K}`]?: RuxIconDomainDisabled[K] }; "rux-icon-done": Omit & { [K in keyof RuxIconDone & keyof RuxIconDoneAttributes]?: RuxIconDone[K] } & { [K in keyof RuxIconDone & keyof RuxIconDoneAttributes as `attr:${K}`]?: RuxIconDoneAttributes[K] } & { [K in keyof RuxIconDone & keyof RuxIconDoneAttributes as `prop:${K}`]?: RuxIconDone[K] }; "rux-icon-done-all": Omit & { [K in keyof RuxIconDoneAll & keyof RuxIconDoneAllAttributes]?: RuxIconDoneAll[K] } & { [K in keyof RuxIconDoneAll & keyof RuxIconDoneAllAttributes as `attr:${K}`]?: RuxIconDoneAllAttributes[K] } & { [K in keyof RuxIconDoneAll & keyof RuxIconDoneAllAttributes as `prop:${K}`]?: RuxIconDoneAll[K] }; "rux-icon-done-outline": Omit & { [K in keyof RuxIconDoneOutline & keyof RuxIconDoneOutlineAttributes]?: RuxIconDoneOutline[K] } & { [K in keyof RuxIconDoneOutline & keyof RuxIconDoneOutlineAttributes as `attr:${K}`]?: RuxIconDoneOutlineAttributes[K] } & { [K in keyof RuxIconDoneOutline & keyof RuxIconDoneOutlineAttributes as `prop:${K}`]?: RuxIconDoneOutline[K] }; "rux-icon-donut-large": Omit & { [K in keyof RuxIconDonutLarge & keyof RuxIconDonutLargeAttributes]?: RuxIconDonutLarge[K] } & { [K in keyof RuxIconDonutLarge & keyof RuxIconDonutLargeAttributes as `attr:${K}`]?: RuxIconDonutLargeAttributes[K] } & { [K in keyof RuxIconDonutLarge & keyof RuxIconDonutLargeAttributes as `prop:${K}`]?: RuxIconDonutLarge[K] }; "rux-icon-donut-small": Omit & { [K in keyof RuxIconDonutSmall & keyof RuxIconDonutSmallAttributes]?: RuxIconDonutSmall[K] } & { [K in keyof RuxIconDonutSmall & keyof RuxIconDonutSmallAttributes as `attr:${K}`]?: RuxIconDonutSmallAttributes[K] } & { [K in keyof RuxIconDonutSmall & keyof RuxIconDonutSmallAttributes as `prop:${K}`]?: RuxIconDonutSmall[K] }; "rux-icon-drafts": Omit & { [K in keyof RuxIconDrafts & keyof RuxIconDraftsAttributes]?: RuxIconDrafts[K] } & { [K in keyof RuxIconDrafts & keyof RuxIconDraftsAttributes as `attr:${K}`]?: RuxIconDraftsAttributes[K] } & { [K in keyof RuxIconDrafts & keyof RuxIconDraftsAttributes as `prop:${K}`]?: RuxIconDrafts[K] }; "rux-icon-drag-handle": Omit & { [K in keyof RuxIconDragHandle & keyof RuxIconDragHandleAttributes]?: RuxIconDragHandle[K] } & { [K in keyof RuxIconDragHandle & keyof RuxIconDragHandleAttributes as `attr:${K}`]?: RuxIconDragHandleAttributes[K] } & { [K in keyof RuxIconDragHandle & keyof RuxIconDragHandleAttributes as `prop:${K}`]?: RuxIconDragHandle[K] }; "rux-icon-drag-indicator": Omit & { [K in keyof RuxIconDragIndicator & keyof RuxIconDragIndicatorAttributes]?: RuxIconDragIndicator[K] } & { [K in keyof RuxIconDragIndicator & keyof RuxIconDragIndicatorAttributes as `attr:${K}`]?: RuxIconDragIndicatorAttributes[K] } & { [K in keyof RuxIconDragIndicator & keyof RuxIconDragIndicatorAttributes as `prop:${K}`]?: RuxIconDragIndicator[K] }; "rux-icon-drive-eta": Omit & { [K in keyof RuxIconDriveEta & keyof RuxIconDriveEtaAttributes]?: RuxIconDriveEta[K] } & { [K in keyof RuxIconDriveEta & keyof RuxIconDriveEtaAttributes as `attr:${K}`]?: RuxIconDriveEtaAttributes[K] } & { [K in keyof RuxIconDriveEta & keyof RuxIconDriveEtaAttributes as `prop:${K}`]?: RuxIconDriveEta[K] }; "rux-icon-duo": Omit & { [K in keyof RuxIconDuo & keyof RuxIconDuoAttributes]?: RuxIconDuo[K] } & { [K in keyof RuxIconDuo & keyof RuxIconDuoAttributes as `attr:${K}`]?: RuxIconDuoAttributes[K] } & { [K in keyof RuxIconDuo & keyof RuxIconDuoAttributes as `prop:${K}`]?: RuxIconDuo[K] }; "rux-icon-dvr": Omit & { [K in keyof RuxIconDvr & keyof RuxIconDvrAttributes]?: RuxIconDvr[K] } & { [K in keyof RuxIconDvr & keyof RuxIconDvrAttributes as `attr:${K}`]?: RuxIconDvrAttributes[K] } & { [K in keyof RuxIconDvr & keyof RuxIconDvrAttributes as `prop:${K}`]?: RuxIconDvr[K] }; "rux-icon-edit": Omit & { [K in keyof RuxIconEdit & keyof RuxIconEditAttributes]?: RuxIconEdit[K] } & { [K in keyof RuxIconEdit & keyof RuxIconEditAttributes as `attr:${K}`]?: RuxIconEditAttributes[K] } & { [K in keyof RuxIconEdit & keyof RuxIconEditAttributes as `prop:${K}`]?: RuxIconEdit[K] }; "rux-icon-edit-attributes": Omit & { [K in keyof RuxIconEditAttributes & keyof RuxIconEditAttributesAttributes]?: RuxIconEditAttributes[K] } & { [K in keyof RuxIconEditAttributes & keyof RuxIconEditAttributesAttributes as `attr:${K}`]?: RuxIconEditAttributesAttributes[K] } & { [K in keyof RuxIconEditAttributes & keyof RuxIconEditAttributesAttributes as `prop:${K}`]?: RuxIconEditAttributes[K] }; "rux-icon-edit-location": Omit & { [K in keyof RuxIconEditLocation & keyof RuxIconEditLocationAttributes]?: RuxIconEditLocation[K] } & { [K in keyof RuxIconEditLocation & keyof RuxIconEditLocationAttributes as `attr:${K}`]?: RuxIconEditLocationAttributes[K] } & { [K in keyof RuxIconEditLocation & keyof RuxIconEditLocationAttributes as `prop:${K}`]?: RuxIconEditLocation[K] }; "rux-icon-eject": Omit & { [K in keyof RuxIconEject & keyof RuxIconEjectAttributes]?: RuxIconEject[K] } & { [K in keyof RuxIconEject & keyof RuxIconEjectAttributes as `attr:${K}`]?: RuxIconEjectAttributes[K] } & { [K in keyof RuxIconEject & keyof RuxIconEjectAttributes as `prop:${K}`]?: RuxIconEject[K] }; "rux-icon-email": Omit & { [K in keyof RuxIconEmail & keyof RuxIconEmailAttributes]?: RuxIconEmail[K] } & { [K in keyof RuxIconEmail & keyof RuxIconEmailAttributes as `attr:${K}`]?: RuxIconEmailAttributes[K] } & { [K in keyof RuxIconEmail & keyof RuxIconEmailAttributes as `prop:${K}`]?: RuxIconEmail[K] }; "rux-icon-enhanced-encryption": Omit & { [K in keyof RuxIconEnhancedEncryption & keyof RuxIconEnhancedEncryptionAttributes]?: RuxIconEnhancedEncryption[K] } & { [K in keyof RuxIconEnhancedEncryption & keyof RuxIconEnhancedEncryptionAttributes as `attr:${K}`]?: RuxIconEnhancedEncryptionAttributes[K] } & { [K in keyof RuxIconEnhancedEncryption & keyof RuxIconEnhancedEncryptionAttributes as `prop:${K}`]?: RuxIconEnhancedEncryption[K] }; "rux-icon-equalizer": Omit & { [K in keyof RuxIconEqualizer & keyof RuxIconEqualizerAttributes]?: RuxIconEqualizer[K] } & { [K in keyof RuxIconEqualizer & keyof RuxIconEqualizerAttributes as `attr:${K}`]?: RuxIconEqualizerAttributes[K] } & { [K in keyof RuxIconEqualizer & keyof RuxIconEqualizerAttributes as `prop:${K}`]?: RuxIconEqualizer[K] }; "rux-icon-equipment": Omit & { [K in keyof RuxIconEquipment & keyof RuxIconEquipmentAttributes]?: RuxIconEquipment[K] } & { [K in keyof RuxIconEquipment & keyof RuxIconEquipmentAttributes as `attr:${K}`]?: RuxIconEquipmentAttributes[K] } & { [K in keyof RuxIconEquipment & keyof RuxIconEquipmentAttributes as `prop:${K}`]?: RuxIconEquipment[K] }; "rux-icon-error": Omit & { [K in keyof RuxIconError & keyof RuxIconErrorAttributes]?: RuxIconError[K] } & { [K in keyof RuxIconError & keyof RuxIconErrorAttributes as `attr:${K}`]?: RuxIconErrorAttributes[K] } & { [K in keyof RuxIconError & keyof RuxIconErrorAttributes as `prop:${K}`]?: RuxIconError[K] }; "rux-icon-error-outline": Omit & { [K in keyof RuxIconErrorOutline & keyof RuxIconErrorOutlineAttributes]?: RuxIconErrorOutline[K] } & { [K in keyof RuxIconErrorOutline & keyof RuxIconErrorOutlineAttributes as `attr:${K}`]?: RuxIconErrorOutlineAttributes[K] } & { [K in keyof RuxIconErrorOutline & keyof RuxIconErrorOutlineAttributes as `prop:${K}`]?: RuxIconErrorOutline[K] }; "rux-icon-euro-symbol": Omit & { [K in keyof RuxIconEuroSymbol & keyof RuxIconEuroSymbolAttributes]?: RuxIconEuroSymbol[K] } & { [K in keyof RuxIconEuroSymbol & keyof RuxIconEuroSymbolAttributes as `attr:${K}`]?: RuxIconEuroSymbolAttributes[K] } & { [K in keyof RuxIconEuroSymbol & keyof RuxIconEuroSymbolAttributes as `prop:${K}`]?: RuxIconEuroSymbol[K] }; "rux-icon-ev-station": Omit & { [K in keyof RuxIconEvStation & keyof RuxIconEvStationAttributes]?: RuxIconEvStation[K] } & { [K in keyof RuxIconEvStation & keyof RuxIconEvStationAttributes as `attr:${K}`]?: RuxIconEvStationAttributes[K] } & { [K in keyof RuxIconEvStation & keyof RuxIconEvStationAttributes as `prop:${K}`]?: RuxIconEvStation[K] }; "rux-icon-event": Omit & { [K in keyof RuxIconEvent & keyof RuxIconEventAttributes]?: RuxIconEvent[K] } & { [K in keyof RuxIconEvent & keyof RuxIconEventAttributes as `attr:${K}`]?: RuxIconEventAttributes[K] } & { [K in keyof RuxIconEvent & keyof RuxIconEventAttributes as `prop:${K}`]?: RuxIconEvent[K] }; "rux-icon-event-available": Omit & { [K in keyof RuxIconEventAvailable & keyof RuxIconEventAvailableAttributes]?: RuxIconEventAvailable[K] } & { [K in keyof RuxIconEventAvailable & keyof RuxIconEventAvailableAttributes as `attr:${K}`]?: RuxIconEventAvailableAttributes[K] } & { [K in keyof RuxIconEventAvailable & keyof RuxIconEventAvailableAttributes as `prop:${K}`]?: RuxIconEventAvailable[K] }; "rux-icon-event-busy": Omit & { [K in keyof RuxIconEventBusy & keyof RuxIconEventBusyAttributes]?: RuxIconEventBusy[K] } & { [K in keyof RuxIconEventBusy & keyof RuxIconEventBusyAttributes as `attr:${K}`]?: RuxIconEventBusyAttributes[K] } & { [K in keyof RuxIconEventBusy & keyof RuxIconEventBusyAttributes as `prop:${K}`]?: RuxIconEventBusy[K] }; "rux-icon-event-note": Omit & { [K in keyof RuxIconEventNote & keyof RuxIconEventNoteAttributes]?: RuxIconEventNote[K] } & { [K in keyof RuxIconEventNote & keyof RuxIconEventNoteAttributes as `attr:${K}`]?: RuxIconEventNoteAttributes[K] } & { [K in keyof RuxIconEventNote & keyof RuxIconEventNoteAttributes as `prop:${K}`]?: RuxIconEventNote[K] }; "rux-icon-exit-to-app": Omit & { [K in keyof RuxIconExitToApp & keyof RuxIconExitToAppAttributes]?: RuxIconExitToApp[K] } & { [K in keyof RuxIconExitToApp & keyof RuxIconExitToAppAttributes as `attr:${K}`]?: RuxIconExitToAppAttributes[K] } & { [K in keyof RuxIconExitToApp & keyof RuxIconExitToAppAttributes as `prop:${K}`]?: RuxIconExitToApp[K] }; "rux-icon-expand-less": Omit & { [K in keyof RuxIconExpandLess & keyof RuxIconExpandLessAttributes]?: RuxIconExpandLess[K] } & { [K in keyof RuxIconExpandLess & keyof RuxIconExpandLessAttributes as `attr:${K}`]?: RuxIconExpandLessAttributes[K] } & { [K in keyof RuxIconExpandLess & keyof RuxIconExpandLessAttributes as `prop:${K}`]?: RuxIconExpandLess[K] }; "rux-icon-expand-more": Omit & { [K in keyof RuxIconExpandMore & keyof RuxIconExpandMoreAttributes]?: RuxIconExpandMore[K] } & { [K in keyof RuxIconExpandMore & keyof RuxIconExpandMoreAttributes as `attr:${K}`]?: RuxIconExpandMoreAttributes[K] } & { [K in keyof RuxIconExpandMore & keyof RuxIconExpandMoreAttributes as `prop:${K}`]?: RuxIconExpandMore[K] }; "rux-icon-explicit": Omit & { [K in keyof RuxIconExplicit & keyof RuxIconExplicitAttributes]?: RuxIconExplicit[K] } & { [K in keyof RuxIconExplicit & keyof RuxIconExplicitAttributes as `attr:${K}`]?: RuxIconExplicitAttributes[K] } & { [K in keyof RuxIconExplicit & keyof RuxIconExplicitAttributes as `prop:${K}`]?: RuxIconExplicit[K] }; "rux-icon-explore": Omit & { [K in keyof RuxIconExplore & keyof RuxIconExploreAttributes]?: RuxIconExplore[K] } & { [K in keyof RuxIconExplore & keyof RuxIconExploreAttributes as `attr:${K}`]?: RuxIconExploreAttributes[K] } & { [K in keyof RuxIconExplore & keyof RuxIconExploreAttributes as `prop:${K}`]?: RuxIconExplore[K] }; "rux-icon-explore-off": Omit & { [K in keyof RuxIconExploreOff & keyof RuxIconExploreOffAttributes]?: RuxIconExploreOff[K] } & { [K in keyof RuxIconExploreOff & keyof RuxIconExploreOffAttributes as `attr:${K}`]?: RuxIconExploreOffAttributes[K] } & { [K in keyof RuxIconExploreOff & keyof RuxIconExploreOffAttributes as `prop:${K}`]?: RuxIconExploreOff[K] }; "rux-icon-exposure": Omit & { [K in keyof RuxIconExposure & keyof RuxIconExposureAttributes]?: RuxIconExposure[K] } & { [K in keyof RuxIconExposure & keyof RuxIconExposureAttributes as `attr:${K}`]?: RuxIconExposureAttributes[K] } & { [K in keyof RuxIconExposure & keyof RuxIconExposureAttributes as `prop:${K}`]?: RuxIconExposure[K] }; "rux-icon-exposure-neg-1": Omit & { [K in keyof RuxIconExposureNeg1 & keyof RuxIconExposureNeg1Attributes]?: RuxIconExposureNeg1[K] } & { [K in keyof RuxIconExposureNeg1 & keyof RuxIconExposureNeg1Attributes as `attr:${K}`]?: RuxIconExposureNeg1Attributes[K] } & { [K in keyof RuxIconExposureNeg1 & keyof RuxIconExposureNeg1Attributes as `prop:${K}`]?: RuxIconExposureNeg1[K] }; "rux-icon-exposure-neg-2": Omit & { [K in keyof RuxIconExposureNeg2 & keyof RuxIconExposureNeg2Attributes]?: RuxIconExposureNeg2[K] } & { [K in keyof RuxIconExposureNeg2 & keyof RuxIconExposureNeg2Attributes as `attr:${K}`]?: RuxIconExposureNeg2Attributes[K] } & { [K in keyof RuxIconExposureNeg2 & keyof RuxIconExposureNeg2Attributes as `prop:${K}`]?: RuxIconExposureNeg2[K] }; "rux-icon-exposure-plus-1": Omit & { [K in keyof RuxIconExposurePlus1 & keyof RuxIconExposurePlus1Attributes]?: RuxIconExposurePlus1[K] } & { [K in keyof RuxIconExposurePlus1 & keyof RuxIconExposurePlus1Attributes as `attr:${K}`]?: RuxIconExposurePlus1Attributes[K] } & { [K in keyof RuxIconExposurePlus1 & keyof RuxIconExposurePlus1Attributes as `prop:${K}`]?: RuxIconExposurePlus1[K] }; "rux-icon-exposure-plus-2": Omit & { [K in keyof RuxIconExposurePlus2 & keyof RuxIconExposurePlus2Attributes]?: RuxIconExposurePlus2[K] } & { [K in keyof RuxIconExposurePlus2 & keyof RuxIconExposurePlus2Attributes as `attr:${K}`]?: RuxIconExposurePlus2Attributes[K] } & { [K in keyof RuxIconExposurePlus2 & keyof RuxIconExposurePlus2Attributes as `prop:${K}`]?: RuxIconExposurePlus2[K] }; "rux-icon-exposure-zero": Omit & { [K in keyof RuxIconExposureZero & keyof RuxIconExposureZeroAttributes]?: RuxIconExposureZero[K] } & { [K in keyof RuxIconExposureZero & keyof RuxIconExposureZeroAttributes as `attr:${K}`]?: RuxIconExposureZeroAttributes[K] } & { [K in keyof RuxIconExposureZero & keyof RuxIconExposureZeroAttributes as `prop:${K}`]?: RuxIconExposureZero[K] }; "rux-icon-extension": Omit & { [K in keyof RuxIconExtension & keyof RuxIconExtensionAttributes]?: RuxIconExtension[K] } & { [K in keyof RuxIconExtension & keyof RuxIconExtensionAttributes as `attr:${K}`]?: RuxIconExtensionAttributes[K] } & { [K in keyof RuxIconExtension & keyof RuxIconExtensionAttributes as `prop:${K}`]?: RuxIconExtension[K] }; "rux-icon-face": Omit & { [K in keyof RuxIconFace & keyof RuxIconFaceAttributes]?: RuxIconFace[K] } & { [K in keyof RuxIconFace & keyof RuxIconFaceAttributes as `attr:${K}`]?: RuxIconFaceAttributes[K] } & { [K in keyof RuxIconFace & keyof RuxIconFaceAttributes as `prop:${K}`]?: RuxIconFace[K] }; "rux-icon-fast-forward": Omit & { [K in keyof RuxIconFastForward & keyof RuxIconFastForwardAttributes]?: RuxIconFastForward[K] } & { [K in keyof RuxIconFastForward & keyof RuxIconFastForwardAttributes as `attr:${K}`]?: RuxIconFastForwardAttributes[K] } & { [K in keyof RuxIconFastForward & keyof RuxIconFastForwardAttributes as `prop:${K}`]?: RuxIconFastForward[K] }; "rux-icon-fast-rewind": Omit & { [K in keyof RuxIconFastRewind & keyof RuxIconFastRewindAttributes]?: RuxIconFastRewind[K] } & { [K in keyof RuxIconFastRewind & keyof RuxIconFastRewindAttributes as `attr:${K}`]?: RuxIconFastRewindAttributes[K] } & { [K in keyof RuxIconFastRewind & keyof RuxIconFastRewindAttributes as `prop:${K}`]?: RuxIconFastRewind[K] }; "rux-icon-fastfood": Omit & { [K in keyof RuxIconFastfood & keyof RuxIconFastfoodAttributes]?: RuxIconFastfood[K] } & { [K in keyof RuxIconFastfood & keyof RuxIconFastfoodAttributes as `attr:${K}`]?: RuxIconFastfoodAttributes[K] } & { [K in keyof RuxIconFastfood & keyof RuxIconFastfoodAttributes as `prop:${K}`]?: RuxIconFastfood[K] }; "rux-icon-favorite": Omit & { [K in keyof RuxIconFavorite & keyof RuxIconFavoriteAttributes]?: RuxIconFavorite[K] } & { [K in keyof RuxIconFavorite & keyof RuxIconFavoriteAttributes as `attr:${K}`]?: RuxIconFavoriteAttributes[K] } & { [K in keyof RuxIconFavorite & keyof RuxIconFavoriteAttributes as `prop:${K}`]?: RuxIconFavorite[K] }; "rux-icon-favorite-border": Omit & { [K in keyof RuxIconFavoriteBorder & keyof RuxIconFavoriteBorderAttributes]?: RuxIconFavoriteBorder[K] } & { [K in keyof RuxIconFavoriteBorder & keyof RuxIconFavoriteBorderAttributes as `attr:${K}`]?: RuxIconFavoriteBorderAttributes[K] } & { [K in keyof RuxIconFavoriteBorder & keyof RuxIconFavoriteBorderAttributes as `prop:${K}`]?: RuxIconFavoriteBorder[K] }; "rux-icon-featured-play-list": Omit & { [K in keyof RuxIconFeaturedPlayList & keyof RuxIconFeaturedPlayListAttributes]?: RuxIconFeaturedPlayList[K] } & { [K in keyof RuxIconFeaturedPlayList & keyof RuxIconFeaturedPlayListAttributes as `attr:${K}`]?: RuxIconFeaturedPlayListAttributes[K] } & { [K in keyof RuxIconFeaturedPlayList & keyof RuxIconFeaturedPlayListAttributes as `prop:${K}`]?: RuxIconFeaturedPlayList[K] }; "rux-icon-featured-video": Omit & { [K in keyof RuxIconFeaturedVideo & keyof RuxIconFeaturedVideoAttributes]?: RuxIconFeaturedVideo[K] } & { [K in keyof RuxIconFeaturedVideo & keyof RuxIconFeaturedVideoAttributes as `attr:${K}`]?: RuxIconFeaturedVideoAttributes[K] } & { [K in keyof RuxIconFeaturedVideo & keyof RuxIconFeaturedVideoAttributes as `prop:${K}`]?: RuxIconFeaturedVideo[K] }; "rux-icon-feedback": Omit & { [K in keyof RuxIconFeedback & keyof RuxIconFeedbackAttributes]?: RuxIconFeedback[K] } & { [K in keyof RuxIconFeedback & keyof RuxIconFeedbackAttributes as `attr:${K}`]?: RuxIconFeedbackAttributes[K] } & { [K in keyof RuxIconFeedback & keyof RuxIconFeedbackAttributes as `prop:${K}`]?: RuxIconFeedback[K] }; "rux-icon-fiber-dvr": Omit & { [K in keyof RuxIconFiberDvr & keyof RuxIconFiberDvrAttributes]?: RuxIconFiberDvr[K] } & { [K in keyof RuxIconFiberDvr & keyof RuxIconFiberDvrAttributes as `attr:${K}`]?: RuxIconFiberDvrAttributes[K] } & { [K in keyof RuxIconFiberDvr & keyof RuxIconFiberDvrAttributes as `prop:${K}`]?: RuxIconFiberDvr[K] }; "rux-icon-fiber-manual-record": Omit & { [K in keyof RuxIconFiberManualRecord & keyof RuxIconFiberManualRecordAttributes]?: RuxIconFiberManualRecord[K] } & { [K in keyof RuxIconFiberManualRecord & keyof RuxIconFiberManualRecordAttributes as `attr:${K}`]?: RuxIconFiberManualRecordAttributes[K] } & { [K in keyof RuxIconFiberManualRecord & keyof RuxIconFiberManualRecordAttributes as `prop:${K}`]?: RuxIconFiberManualRecord[K] }; "rux-icon-fiber-new": Omit & { [K in keyof RuxIconFiberNew & keyof RuxIconFiberNewAttributes]?: RuxIconFiberNew[K] } & { [K in keyof RuxIconFiberNew & keyof RuxIconFiberNewAttributes as `attr:${K}`]?: RuxIconFiberNewAttributes[K] } & { [K in keyof RuxIconFiberNew & keyof RuxIconFiberNewAttributes as `prop:${K}`]?: RuxIconFiberNew[K] }; "rux-icon-fiber-pin": Omit & { [K in keyof RuxIconFiberPin & keyof RuxIconFiberPinAttributes]?: RuxIconFiberPin[K] } & { [K in keyof RuxIconFiberPin & keyof RuxIconFiberPinAttributes as `attr:${K}`]?: RuxIconFiberPinAttributes[K] } & { [K in keyof RuxIconFiberPin & keyof RuxIconFiberPinAttributes as `prop:${K}`]?: RuxIconFiberPin[K] }; "rux-icon-fiber-smart-record": Omit & { [K in keyof RuxIconFiberSmartRecord & keyof RuxIconFiberSmartRecordAttributes]?: RuxIconFiberSmartRecord[K] } & { [K in keyof RuxIconFiberSmartRecord & keyof RuxIconFiberSmartRecordAttributes as `attr:${K}`]?: RuxIconFiberSmartRecordAttributes[K] } & { [K in keyof RuxIconFiberSmartRecord & keyof RuxIconFiberSmartRecordAttributes as `prop:${K}`]?: RuxIconFiberSmartRecord[K] }; "rux-icon-file-copy": Omit & { [K in keyof RuxIconFileCopy & keyof RuxIconFileCopyAttributes]?: RuxIconFileCopy[K] } & { [K in keyof RuxIconFileCopy & keyof RuxIconFileCopyAttributes as `attr:${K}`]?: RuxIconFileCopyAttributes[K] } & { [K in keyof RuxIconFileCopy & keyof RuxIconFileCopyAttributes as `prop:${K}`]?: RuxIconFileCopy[K] }; "rux-icon-filter": Omit & { [K in keyof RuxIconFilter & keyof RuxIconFilterAttributes]?: RuxIconFilter[K] } & { [K in keyof RuxIconFilter & keyof RuxIconFilterAttributes as `attr:${K}`]?: RuxIconFilterAttributes[K] } & { [K in keyof RuxIconFilter & keyof RuxIconFilterAttributes as `prop:${K}`]?: RuxIconFilter[K] }; "rux-icon-filter-1": Omit & { [K in keyof RuxIconFilter1 & keyof RuxIconFilter1Attributes]?: RuxIconFilter1[K] } & { [K in keyof RuxIconFilter1 & keyof RuxIconFilter1Attributes as `attr:${K}`]?: RuxIconFilter1Attributes[K] } & { [K in keyof RuxIconFilter1 & keyof RuxIconFilter1Attributes as `prop:${K}`]?: RuxIconFilter1[K] }; "rux-icon-filter-2": Omit & { [K in keyof RuxIconFilter2 & keyof RuxIconFilter2Attributes]?: RuxIconFilter2[K] } & { [K in keyof RuxIconFilter2 & keyof RuxIconFilter2Attributes as `attr:${K}`]?: RuxIconFilter2Attributes[K] } & { [K in keyof RuxIconFilter2 & keyof RuxIconFilter2Attributes as `prop:${K}`]?: RuxIconFilter2[K] }; "rux-icon-filter-3": Omit & { [K in keyof RuxIconFilter3 & keyof RuxIconFilter3Attributes]?: RuxIconFilter3[K] } & { [K in keyof RuxIconFilter3 & keyof RuxIconFilter3Attributes as `attr:${K}`]?: RuxIconFilter3Attributes[K] } & { [K in keyof RuxIconFilter3 & keyof RuxIconFilter3Attributes as `prop:${K}`]?: RuxIconFilter3[K] }; "rux-icon-filter-4": Omit & { [K in keyof RuxIconFilter4 & keyof RuxIconFilter4Attributes]?: RuxIconFilter4[K] } & { [K in keyof RuxIconFilter4 & keyof RuxIconFilter4Attributes as `attr:${K}`]?: RuxIconFilter4Attributes[K] } & { [K in keyof RuxIconFilter4 & keyof RuxIconFilter4Attributes as `prop:${K}`]?: RuxIconFilter4[K] }; "rux-icon-filter-5": Omit & { [K in keyof RuxIconFilter5 & keyof RuxIconFilter5Attributes]?: RuxIconFilter5[K] } & { [K in keyof RuxIconFilter5 & keyof RuxIconFilter5Attributes as `attr:${K}`]?: RuxIconFilter5Attributes[K] } & { [K in keyof RuxIconFilter5 & keyof RuxIconFilter5Attributes as `prop:${K}`]?: RuxIconFilter5[K] }; "rux-icon-filter-6": Omit & { [K in keyof RuxIconFilter6 & keyof RuxIconFilter6Attributes]?: RuxIconFilter6[K] } & { [K in keyof RuxIconFilter6 & keyof RuxIconFilter6Attributes as `attr:${K}`]?: RuxIconFilter6Attributes[K] } & { [K in keyof RuxIconFilter6 & keyof RuxIconFilter6Attributes as `prop:${K}`]?: RuxIconFilter6[K] }; "rux-icon-filter-7": Omit & { [K in keyof RuxIconFilter7 & keyof RuxIconFilter7Attributes]?: RuxIconFilter7[K] } & { [K in keyof RuxIconFilter7 & keyof RuxIconFilter7Attributes as `attr:${K}`]?: RuxIconFilter7Attributes[K] } & { [K in keyof RuxIconFilter7 & keyof RuxIconFilter7Attributes as `prop:${K}`]?: RuxIconFilter7[K] }; "rux-icon-filter-8": Omit & { [K in keyof RuxIconFilter8 & keyof RuxIconFilter8Attributes]?: RuxIconFilter8[K] } & { [K in keyof RuxIconFilter8 & keyof RuxIconFilter8Attributes as `attr:${K}`]?: RuxIconFilter8Attributes[K] } & { [K in keyof RuxIconFilter8 & keyof RuxIconFilter8Attributes as `prop:${K}`]?: RuxIconFilter8[K] }; "rux-icon-filter-9": Omit & { [K in keyof RuxIconFilter9 & keyof RuxIconFilter9Attributes]?: RuxIconFilter9[K] } & { [K in keyof RuxIconFilter9 & keyof RuxIconFilter9Attributes as `attr:${K}`]?: RuxIconFilter9Attributes[K] } & { [K in keyof RuxIconFilter9 & keyof RuxIconFilter9Attributes as `prop:${K}`]?: RuxIconFilter9[K] }; "rux-icon-filter-9-plus": Omit & { [K in keyof RuxIconFilter9Plus & keyof RuxIconFilter9PlusAttributes]?: RuxIconFilter9Plus[K] } & { [K in keyof RuxIconFilter9Plus & keyof RuxIconFilter9PlusAttributes as `attr:${K}`]?: RuxIconFilter9PlusAttributes[K] } & { [K in keyof RuxIconFilter9Plus & keyof RuxIconFilter9PlusAttributes as `prop:${K}`]?: RuxIconFilter9Plus[K] }; "rux-icon-filter-b-and-w": Omit & { [K in keyof RuxIconFilterBAndW & keyof RuxIconFilterBAndWAttributes]?: RuxIconFilterBAndW[K] } & { [K in keyof RuxIconFilterBAndW & keyof RuxIconFilterBAndWAttributes as `attr:${K}`]?: RuxIconFilterBAndWAttributes[K] } & { [K in keyof RuxIconFilterBAndW & keyof RuxIconFilterBAndWAttributes as `prop:${K}`]?: RuxIconFilterBAndW[K] }; "rux-icon-filter-center-focus": Omit & { [K in keyof RuxIconFilterCenterFocus & keyof RuxIconFilterCenterFocusAttributes]?: RuxIconFilterCenterFocus[K] } & { [K in keyof RuxIconFilterCenterFocus & keyof RuxIconFilterCenterFocusAttributes as `attr:${K}`]?: RuxIconFilterCenterFocusAttributes[K] } & { [K in keyof RuxIconFilterCenterFocus & keyof RuxIconFilterCenterFocusAttributes as `prop:${K}`]?: RuxIconFilterCenterFocus[K] }; "rux-icon-filter-drama": Omit & { [K in keyof RuxIconFilterDrama & keyof RuxIconFilterDramaAttributes]?: RuxIconFilterDrama[K] } & { [K in keyof RuxIconFilterDrama & keyof RuxIconFilterDramaAttributes as `attr:${K}`]?: RuxIconFilterDramaAttributes[K] } & { [K in keyof RuxIconFilterDrama & keyof RuxIconFilterDramaAttributes as `prop:${K}`]?: RuxIconFilterDrama[K] }; "rux-icon-filter-frames": Omit & { [K in keyof RuxIconFilterFrames & keyof RuxIconFilterFramesAttributes]?: RuxIconFilterFrames[K] } & { [K in keyof RuxIconFilterFrames & keyof RuxIconFilterFramesAttributes as `attr:${K}`]?: RuxIconFilterFramesAttributes[K] } & { [K in keyof RuxIconFilterFrames & keyof RuxIconFilterFramesAttributes as `prop:${K}`]?: RuxIconFilterFrames[K] }; "rux-icon-filter-hdr": Omit & { [K in keyof RuxIconFilterHdr & keyof RuxIconFilterHdrAttributes]?: RuxIconFilterHdr[K] } & { [K in keyof RuxIconFilterHdr & keyof RuxIconFilterHdrAttributes as `attr:${K}`]?: RuxIconFilterHdrAttributes[K] } & { [K in keyof RuxIconFilterHdr & keyof RuxIconFilterHdrAttributes as `prop:${K}`]?: RuxIconFilterHdr[K] }; "rux-icon-filter-list": Omit & { [K in keyof RuxIconFilterList & keyof RuxIconFilterListAttributes]?: RuxIconFilterList[K] } & { [K in keyof RuxIconFilterList & keyof RuxIconFilterListAttributes as `attr:${K}`]?: RuxIconFilterListAttributes[K] } & { [K in keyof RuxIconFilterList & keyof RuxIconFilterListAttributes as `prop:${K}`]?: RuxIconFilterList[K] }; "rux-icon-filter-none": Omit & { [K in keyof RuxIconFilterNone & keyof RuxIconFilterNoneAttributes]?: RuxIconFilterNone[K] } & { [K in keyof RuxIconFilterNone & keyof RuxIconFilterNoneAttributes as `attr:${K}`]?: RuxIconFilterNoneAttributes[K] } & { [K in keyof RuxIconFilterNone & keyof RuxIconFilterNoneAttributes as `prop:${K}`]?: RuxIconFilterNone[K] }; "rux-icon-filter-tilt-shift": Omit & { [K in keyof RuxIconFilterTiltShift & keyof RuxIconFilterTiltShiftAttributes]?: RuxIconFilterTiltShift[K] } & { [K in keyof RuxIconFilterTiltShift & keyof RuxIconFilterTiltShiftAttributes as `attr:${K}`]?: RuxIconFilterTiltShiftAttributes[K] } & { [K in keyof RuxIconFilterTiltShift & keyof RuxIconFilterTiltShiftAttributes as `prop:${K}`]?: RuxIconFilterTiltShift[K] }; "rux-icon-filter-vintage": Omit & { [K in keyof RuxIconFilterVintage & keyof RuxIconFilterVintageAttributes]?: RuxIconFilterVintage[K] } & { [K in keyof RuxIconFilterVintage & keyof RuxIconFilterVintageAttributes as `attr:${K}`]?: RuxIconFilterVintageAttributes[K] } & { [K in keyof RuxIconFilterVintage & keyof RuxIconFilterVintageAttributes as `prop:${K}`]?: RuxIconFilterVintage[K] }; "rux-icon-find-in-page": Omit & { [K in keyof RuxIconFindInPage & keyof RuxIconFindInPageAttributes]?: RuxIconFindInPage[K] } & { [K in keyof RuxIconFindInPage & keyof RuxIconFindInPageAttributes as `attr:${K}`]?: RuxIconFindInPageAttributes[K] } & { [K in keyof RuxIconFindInPage & keyof RuxIconFindInPageAttributes as `prop:${K}`]?: RuxIconFindInPage[K] }; "rux-icon-find-replace": Omit & { [K in keyof RuxIconFindReplace & keyof RuxIconFindReplaceAttributes]?: RuxIconFindReplace[K] } & { [K in keyof RuxIconFindReplace & keyof RuxIconFindReplaceAttributes as `attr:${K}`]?: RuxIconFindReplaceAttributes[K] } & { [K in keyof RuxIconFindReplace & keyof RuxIconFindReplaceAttributes as `prop:${K}`]?: RuxIconFindReplace[K] }; "rux-icon-fingerprint": Omit & { [K in keyof RuxIconFingerprint & keyof RuxIconFingerprintAttributes]?: RuxIconFingerprint[K] } & { [K in keyof RuxIconFingerprint & keyof RuxIconFingerprintAttributes as `attr:${K}`]?: RuxIconFingerprintAttributes[K] } & { [K in keyof RuxIconFingerprint & keyof RuxIconFingerprintAttributes as `prop:${K}`]?: RuxIconFingerprint[K] }; "rux-icon-first-page": Omit & { [K in keyof RuxIconFirstPage & keyof RuxIconFirstPageAttributes]?: RuxIconFirstPage[K] } & { [K in keyof RuxIconFirstPage & keyof RuxIconFirstPageAttributes as `attr:${K}`]?: RuxIconFirstPageAttributes[K] } & { [K in keyof RuxIconFirstPage & keyof RuxIconFirstPageAttributes as `prop:${K}`]?: RuxIconFirstPage[K] }; "rux-icon-fitness-center": Omit & { [K in keyof RuxIconFitnessCenter & keyof RuxIconFitnessCenterAttributes]?: RuxIconFitnessCenter[K] } & { [K in keyof RuxIconFitnessCenter & keyof RuxIconFitnessCenterAttributes as `attr:${K}`]?: RuxIconFitnessCenterAttributes[K] } & { [K in keyof RuxIconFitnessCenter & keyof RuxIconFitnessCenterAttributes as `prop:${K}`]?: RuxIconFitnessCenter[K] }; "rux-icon-flag": Omit & { [K in keyof RuxIconFlag & keyof RuxIconFlagAttributes]?: RuxIconFlag[K] } & { [K in keyof RuxIconFlag & keyof RuxIconFlagAttributes as `attr:${K}`]?: RuxIconFlagAttributes[K] } & { [K in keyof RuxIconFlag & keyof RuxIconFlagAttributes as `prop:${K}`]?: RuxIconFlag[K] }; "rux-icon-flare": Omit & { [K in keyof RuxIconFlare & keyof RuxIconFlareAttributes]?: RuxIconFlare[K] } & { [K in keyof RuxIconFlare & keyof RuxIconFlareAttributes as `attr:${K}`]?: RuxIconFlareAttributes[K] } & { [K in keyof RuxIconFlare & keyof RuxIconFlareAttributes as `prop:${K}`]?: RuxIconFlare[K] }; "rux-icon-flash-auto": Omit & { [K in keyof RuxIconFlashAuto & keyof RuxIconFlashAutoAttributes]?: RuxIconFlashAuto[K] } & { [K in keyof RuxIconFlashAuto & keyof RuxIconFlashAutoAttributes as `attr:${K}`]?: RuxIconFlashAutoAttributes[K] } & { [K in keyof RuxIconFlashAuto & keyof RuxIconFlashAutoAttributes as `prop:${K}`]?: RuxIconFlashAuto[K] }; "rux-icon-flash-off": Omit & { [K in keyof RuxIconFlashOff & keyof RuxIconFlashOffAttributes]?: RuxIconFlashOff[K] } & { [K in keyof RuxIconFlashOff & keyof RuxIconFlashOffAttributes as `attr:${K}`]?: RuxIconFlashOffAttributes[K] } & { [K in keyof RuxIconFlashOff & keyof RuxIconFlashOffAttributes as `prop:${K}`]?: RuxIconFlashOff[K] }; "rux-icon-flash-on": Omit & { [K in keyof RuxIconFlashOn & keyof RuxIconFlashOnAttributes]?: RuxIconFlashOn[K] } & { [K in keyof RuxIconFlashOn & keyof RuxIconFlashOnAttributes as `attr:${K}`]?: RuxIconFlashOnAttributes[K] } & { [K in keyof RuxIconFlashOn & keyof RuxIconFlashOnAttributes as `prop:${K}`]?: RuxIconFlashOn[K] }; "rux-icon-flight": Omit & { [K in keyof RuxIconFlight & keyof RuxIconFlightAttributes]?: RuxIconFlight[K] } & { [K in keyof RuxIconFlight & keyof RuxIconFlightAttributes as `attr:${K}`]?: RuxIconFlightAttributes[K] } & { [K in keyof RuxIconFlight & keyof RuxIconFlightAttributes as `prop:${K}`]?: RuxIconFlight[K] }; "rux-icon-flight-land": Omit & { [K in keyof RuxIconFlightLand & keyof RuxIconFlightLandAttributes]?: RuxIconFlightLand[K] } & { [K in keyof RuxIconFlightLand & keyof RuxIconFlightLandAttributes as `attr:${K}`]?: RuxIconFlightLandAttributes[K] } & { [K in keyof RuxIconFlightLand & keyof RuxIconFlightLandAttributes as `prop:${K}`]?: RuxIconFlightLand[K] }; "rux-icon-flight-takeoff": Omit & { [K in keyof RuxIconFlightTakeoff & keyof RuxIconFlightTakeoffAttributes]?: RuxIconFlightTakeoff[K] } & { [K in keyof RuxIconFlightTakeoff & keyof RuxIconFlightTakeoffAttributes as `attr:${K}`]?: RuxIconFlightTakeoffAttributes[K] } & { [K in keyof RuxIconFlightTakeoff & keyof RuxIconFlightTakeoffAttributes as `prop:${K}`]?: RuxIconFlightTakeoff[K] }; "rux-icon-flip": Omit & { [K in keyof RuxIconFlip & keyof RuxIconFlipAttributes]?: RuxIconFlip[K] } & { [K in keyof RuxIconFlip & keyof RuxIconFlipAttributes as `attr:${K}`]?: RuxIconFlipAttributes[K] } & { [K in keyof RuxIconFlip & keyof RuxIconFlipAttributes as `prop:${K}`]?: RuxIconFlip[K] }; "rux-icon-flip-to-back": Omit & { [K in keyof RuxIconFlipToBack & keyof RuxIconFlipToBackAttributes]?: RuxIconFlipToBack[K] } & { [K in keyof RuxIconFlipToBack & keyof RuxIconFlipToBackAttributes as `attr:${K}`]?: RuxIconFlipToBackAttributes[K] } & { [K in keyof RuxIconFlipToBack & keyof RuxIconFlipToBackAttributes as `prop:${K}`]?: RuxIconFlipToBack[K] }; "rux-icon-flip-to-front": Omit & { [K in keyof RuxIconFlipToFront & keyof RuxIconFlipToFrontAttributes]?: RuxIconFlipToFront[K] } & { [K in keyof RuxIconFlipToFront & keyof RuxIconFlipToFrontAttributes as `attr:${K}`]?: RuxIconFlipToFrontAttributes[K] } & { [K in keyof RuxIconFlipToFront & keyof RuxIconFlipToFrontAttributes as `prop:${K}`]?: RuxIconFlipToFront[K] }; "rux-icon-folder": Omit & { [K in keyof RuxIconFolder & keyof RuxIconFolderAttributes]?: RuxIconFolder[K] } & { [K in keyof RuxIconFolder & keyof RuxIconFolderAttributes as `attr:${K}`]?: RuxIconFolderAttributes[K] } & { [K in keyof RuxIconFolder & keyof RuxIconFolderAttributes as `prop:${K}`]?: RuxIconFolder[K] }; "rux-icon-folder-open": Omit & { [K in keyof RuxIconFolderOpen & keyof RuxIconFolderOpenAttributes]?: RuxIconFolderOpen[K] } & { [K in keyof RuxIconFolderOpen & keyof RuxIconFolderOpenAttributes as `attr:${K}`]?: RuxIconFolderOpenAttributes[K] } & { [K in keyof RuxIconFolderOpen & keyof RuxIconFolderOpenAttributes as `prop:${K}`]?: RuxIconFolderOpen[K] }; "rux-icon-folder-shared": Omit & { [K in keyof RuxIconFolderShared & keyof RuxIconFolderSharedAttributes]?: RuxIconFolderShared[K] } & { [K in keyof RuxIconFolderShared & keyof RuxIconFolderSharedAttributes as `attr:${K}`]?: RuxIconFolderSharedAttributes[K] } & { [K in keyof RuxIconFolderShared & keyof RuxIconFolderSharedAttributes as `prop:${K}`]?: RuxIconFolderShared[K] }; "rux-icon-folder-special": Omit & { [K in keyof RuxIconFolderSpecial & keyof RuxIconFolderSpecialAttributes]?: RuxIconFolderSpecial[K] } & { [K in keyof RuxIconFolderSpecial & keyof RuxIconFolderSpecialAttributes as `attr:${K}`]?: RuxIconFolderSpecialAttributes[K] } & { [K in keyof RuxIconFolderSpecial & keyof RuxIconFolderSpecialAttributes as `prop:${K}`]?: RuxIconFolderSpecial[K] }; "rux-icon-font-download": Omit & { [K in keyof RuxIconFontDownload & keyof RuxIconFontDownloadAttributes]?: RuxIconFontDownload[K] } & { [K in keyof RuxIconFontDownload & keyof RuxIconFontDownloadAttributes as `attr:${K}`]?: RuxIconFontDownloadAttributes[K] } & { [K in keyof RuxIconFontDownload & keyof RuxIconFontDownloadAttributes as `prop:${K}`]?: RuxIconFontDownload[K] }; "rux-icon-format-align-center": Omit & { [K in keyof RuxIconFormatAlignCenter & keyof RuxIconFormatAlignCenterAttributes]?: RuxIconFormatAlignCenter[K] } & { [K in keyof RuxIconFormatAlignCenter & keyof RuxIconFormatAlignCenterAttributes as `attr:${K}`]?: RuxIconFormatAlignCenterAttributes[K] } & { [K in keyof RuxIconFormatAlignCenter & keyof RuxIconFormatAlignCenterAttributes as `prop:${K}`]?: RuxIconFormatAlignCenter[K] }; "rux-icon-format-align-justify": Omit & { [K in keyof RuxIconFormatAlignJustify & keyof RuxIconFormatAlignJustifyAttributes]?: RuxIconFormatAlignJustify[K] } & { [K in keyof RuxIconFormatAlignJustify & keyof RuxIconFormatAlignJustifyAttributes as `attr:${K}`]?: RuxIconFormatAlignJustifyAttributes[K] } & { [K in keyof RuxIconFormatAlignJustify & keyof RuxIconFormatAlignJustifyAttributes as `prop:${K}`]?: RuxIconFormatAlignJustify[K] }; "rux-icon-format-align-left": Omit & { [K in keyof RuxIconFormatAlignLeft & keyof RuxIconFormatAlignLeftAttributes]?: RuxIconFormatAlignLeft[K] } & { [K in keyof RuxIconFormatAlignLeft & keyof RuxIconFormatAlignLeftAttributes as `attr:${K}`]?: RuxIconFormatAlignLeftAttributes[K] } & { [K in keyof RuxIconFormatAlignLeft & keyof RuxIconFormatAlignLeftAttributes as `prop:${K}`]?: RuxIconFormatAlignLeft[K] }; "rux-icon-format-align-right": Omit & { [K in keyof RuxIconFormatAlignRight & keyof RuxIconFormatAlignRightAttributes]?: RuxIconFormatAlignRight[K] } & { [K in keyof RuxIconFormatAlignRight & keyof RuxIconFormatAlignRightAttributes as `attr:${K}`]?: RuxIconFormatAlignRightAttributes[K] } & { [K in keyof RuxIconFormatAlignRight & keyof RuxIconFormatAlignRightAttributes as `prop:${K}`]?: RuxIconFormatAlignRight[K] }; "rux-icon-format-bold": Omit & { [K in keyof RuxIconFormatBold & keyof RuxIconFormatBoldAttributes]?: RuxIconFormatBold[K] } & { [K in keyof RuxIconFormatBold & keyof RuxIconFormatBoldAttributes as `attr:${K}`]?: RuxIconFormatBoldAttributes[K] } & { [K in keyof RuxIconFormatBold & keyof RuxIconFormatBoldAttributes as `prop:${K}`]?: RuxIconFormatBold[K] }; "rux-icon-format-clear": Omit & { [K in keyof RuxIconFormatClear & keyof RuxIconFormatClearAttributes]?: RuxIconFormatClear[K] } & { [K in keyof RuxIconFormatClear & keyof RuxIconFormatClearAttributes as `attr:${K}`]?: RuxIconFormatClearAttributes[K] } & { [K in keyof RuxIconFormatClear & keyof RuxIconFormatClearAttributes as `prop:${K}`]?: RuxIconFormatClear[K] }; "rux-icon-format-color-fill": Omit & { [K in keyof RuxIconFormatColorFill & keyof RuxIconFormatColorFillAttributes]?: RuxIconFormatColorFill[K] } & { [K in keyof RuxIconFormatColorFill & keyof RuxIconFormatColorFillAttributes as `attr:${K}`]?: RuxIconFormatColorFillAttributes[K] } & { [K in keyof RuxIconFormatColorFill & keyof RuxIconFormatColorFillAttributes as `prop:${K}`]?: RuxIconFormatColorFill[K] }; "rux-icon-format-color-reset": Omit & { [K in keyof RuxIconFormatColorReset & keyof RuxIconFormatColorResetAttributes]?: RuxIconFormatColorReset[K] } & { [K in keyof RuxIconFormatColorReset & keyof RuxIconFormatColorResetAttributes as `attr:${K}`]?: RuxIconFormatColorResetAttributes[K] } & { [K in keyof RuxIconFormatColorReset & keyof RuxIconFormatColorResetAttributes as `prop:${K}`]?: RuxIconFormatColorReset[K] }; "rux-icon-format-color-text": Omit & { [K in keyof RuxIconFormatColorText & keyof RuxIconFormatColorTextAttributes]?: RuxIconFormatColorText[K] } & { [K in keyof RuxIconFormatColorText & keyof RuxIconFormatColorTextAttributes as `attr:${K}`]?: RuxIconFormatColorTextAttributes[K] } & { [K in keyof RuxIconFormatColorText & keyof RuxIconFormatColorTextAttributes as `prop:${K}`]?: RuxIconFormatColorText[K] }; "rux-icon-format-indent-decrease": Omit & { [K in keyof RuxIconFormatIndentDecrease & keyof RuxIconFormatIndentDecreaseAttributes]?: RuxIconFormatIndentDecrease[K] } & { [K in keyof RuxIconFormatIndentDecrease & keyof RuxIconFormatIndentDecreaseAttributes as `attr:${K}`]?: RuxIconFormatIndentDecreaseAttributes[K] } & { [K in keyof RuxIconFormatIndentDecrease & keyof RuxIconFormatIndentDecreaseAttributes as `prop:${K}`]?: RuxIconFormatIndentDecrease[K] }; "rux-icon-format-indent-increase": Omit & { [K in keyof RuxIconFormatIndentIncrease & keyof RuxIconFormatIndentIncreaseAttributes]?: RuxIconFormatIndentIncrease[K] } & { [K in keyof RuxIconFormatIndentIncrease & keyof RuxIconFormatIndentIncreaseAttributes as `attr:${K}`]?: RuxIconFormatIndentIncreaseAttributes[K] } & { [K in keyof RuxIconFormatIndentIncrease & keyof RuxIconFormatIndentIncreaseAttributes as `prop:${K}`]?: RuxIconFormatIndentIncrease[K] }; "rux-icon-format-italic": Omit & { [K in keyof RuxIconFormatItalic & keyof RuxIconFormatItalicAttributes]?: RuxIconFormatItalic[K] } & { [K in keyof RuxIconFormatItalic & keyof RuxIconFormatItalicAttributes as `attr:${K}`]?: RuxIconFormatItalicAttributes[K] } & { [K in keyof RuxIconFormatItalic & keyof RuxIconFormatItalicAttributes as `prop:${K}`]?: RuxIconFormatItalic[K] }; "rux-icon-format-line-spacing": Omit & { [K in keyof RuxIconFormatLineSpacing & keyof RuxIconFormatLineSpacingAttributes]?: RuxIconFormatLineSpacing[K] } & { [K in keyof RuxIconFormatLineSpacing & keyof RuxIconFormatLineSpacingAttributes as `attr:${K}`]?: RuxIconFormatLineSpacingAttributes[K] } & { [K in keyof RuxIconFormatLineSpacing & keyof RuxIconFormatLineSpacingAttributes as `prop:${K}`]?: RuxIconFormatLineSpacing[K] }; "rux-icon-format-list-bulleted": Omit & { [K in keyof RuxIconFormatListBulleted & keyof RuxIconFormatListBulletedAttributes]?: RuxIconFormatListBulleted[K] } & { [K in keyof RuxIconFormatListBulleted & keyof RuxIconFormatListBulletedAttributes as `attr:${K}`]?: RuxIconFormatListBulletedAttributes[K] } & { [K in keyof RuxIconFormatListBulleted & keyof RuxIconFormatListBulletedAttributes as `prop:${K}`]?: RuxIconFormatListBulleted[K] }; "rux-icon-format-list-numbered": Omit & { [K in keyof RuxIconFormatListNumbered & keyof RuxIconFormatListNumberedAttributes]?: RuxIconFormatListNumbered[K] } & { [K in keyof RuxIconFormatListNumbered & keyof RuxIconFormatListNumberedAttributes as `attr:${K}`]?: RuxIconFormatListNumberedAttributes[K] } & { [K in keyof RuxIconFormatListNumbered & keyof RuxIconFormatListNumberedAttributes as `prop:${K}`]?: RuxIconFormatListNumbered[K] }; "rux-icon-format-list-numbered-rtl": Omit & { [K in keyof RuxIconFormatListNumberedRtl & keyof RuxIconFormatListNumberedRtlAttributes]?: RuxIconFormatListNumberedRtl[K] } & { [K in keyof RuxIconFormatListNumberedRtl & keyof RuxIconFormatListNumberedRtlAttributes as `attr:${K}`]?: RuxIconFormatListNumberedRtlAttributes[K] } & { [K in keyof RuxIconFormatListNumberedRtl & keyof RuxIconFormatListNumberedRtlAttributes as `prop:${K}`]?: RuxIconFormatListNumberedRtl[K] }; "rux-icon-format-paint": Omit & { [K in keyof RuxIconFormatPaint & keyof RuxIconFormatPaintAttributes]?: RuxIconFormatPaint[K] } & { [K in keyof RuxIconFormatPaint & keyof RuxIconFormatPaintAttributes as `attr:${K}`]?: RuxIconFormatPaintAttributes[K] } & { [K in keyof RuxIconFormatPaint & keyof RuxIconFormatPaintAttributes as `prop:${K}`]?: RuxIconFormatPaint[K] }; "rux-icon-format-quote": Omit & { [K in keyof RuxIconFormatQuote & keyof RuxIconFormatQuoteAttributes]?: RuxIconFormatQuote[K] } & { [K in keyof RuxIconFormatQuote & keyof RuxIconFormatQuoteAttributes as `attr:${K}`]?: RuxIconFormatQuoteAttributes[K] } & { [K in keyof RuxIconFormatQuote & keyof RuxIconFormatQuoteAttributes as `prop:${K}`]?: RuxIconFormatQuote[K] }; "rux-icon-format-shapes": Omit & { [K in keyof RuxIconFormatShapes & keyof RuxIconFormatShapesAttributes]?: RuxIconFormatShapes[K] } & { [K in keyof RuxIconFormatShapes & keyof RuxIconFormatShapesAttributes as `attr:${K}`]?: RuxIconFormatShapesAttributes[K] } & { [K in keyof RuxIconFormatShapes & keyof RuxIconFormatShapesAttributes as `prop:${K}`]?: RuxIconFormatShapes[K] }; "rux-icon-format-size": Omit & { [K in keyof RuxIconFormatSize & keyof RuxIconFormatSizeAttributes]?: RuxIconFormatSize[K] } & { [K in keyof RuxIconFormatSize & keyof RuxIconFormatSizeAttributes as `attr:${K}`]?: RuxIconFormatSizeAttributes[K] } & { [K in keyof RuxIconFormatSize & keyof RuxIconFormatSizeAttributes as `prop:${K}`]?: RuxIconFormatSize[K] }; "rux-icon-format-strikethrough": Omit & { [K in keyof RuxIconFormatStrikethrough & keyof RuxIconFormatStrikethroughAttributes]?: RuxIconFormatStrikethrough[K] } & { [K in keyof RuxIconFormatStrikethrough & keyof RuxIconFormatStrikethroughAttributes as `attr:${K}`]?: RuxIconFormatStrikethroughAttributes[K] } & { [K in keyof RuxIconFormatStrikethrough & keyof RuxIconFormatStrikethroughAttributes as `prop:${K}`]?: RuxIconFormatStrikethrough[K] }; "rux-icon-format-textdirection-l-to-r": Omit & { [K in keyof RuxIconFormatTextdirectionLToR & keyof RuxIconFormatTextdirectionLToRAttributes]?: RuxIconFormatTextdirectionLToR[K] } & { [K in keyof RuxIconFormatTextdirectionLToR & keyof RuxIconFormatTextdirectionLToRAttributes as `attr:${K}`]?: RuxIconFormatTextdirectionLToRAttributes[K] } & { [K in keyof RuxIconFormatTextdirectionLToR & keyof RuxIconFormatTextdirectionLToRAttributes as `prop:${K}`]?: RuxIconFormatTextdirectionLToR[K] }; "rux-icon-format-textdirection-r-to-l": Omit & { [K in keyof RuxIconFormatTextdirectionRToL & keyof RuxIconFormatTextdirectionRToLAttributes]?: RuxIconFormatTextdirectionRToL[K] } & { [K in keyof RuxIconFormatTextdirectionRToL & keyof RuxIconFormatTextdirectionRToLAttributes as `attr:${K}`]?: RuxIconFormatTextdirectionRToLAttributes[K] } & { [K in keyof RuxIconFormatTextdirectionRToL & keyof RuxIconFormatTextdirectionRToLAttributes as `prop:${K}`]?: RuxIconFormatTextdirectionRToL[K] }; "rux-icon-format-underlined": Omit & { [K in keyof RuxIconFormatUnderlined & keyof RuxIconFormatUnderlinedAttributes]?: RuxIconFormatUnderlined[K] } & { [K in keyof RuxIconFormatUnderlined & keyof RuxIconFormatUnderlinedAttributes as `attr:${K}`]?: RuxIconFormatUnderlinedAttributes[K] } & { [K in keyof RuxIconFormatUnderlined & keyof RuxIconFormatUnderlinedAttributes as `prop:${K}`]?: RuxIconFormatUnderlined[K] }; "rux-icon-forum": Omit & { [K in keyof RuxIconForum & keyof RuxIconForumAttributes]?: RuxIconForum[K] } & { [K in keyof RuxIconForum & keyof RuxIconForumAttributes as `attr:${K}`]?: RuxIconForumAttributes[K] } & { [K in keyof RuxIconForum & keyof RuxIconForumAttributes as `prop:${K}`]?: RuxIconForum[K] }; "rux-icon-forward": Omit & { [K in keyof RuxIconForward & keyof RuxIconForwardAttributes]?: RuxIconForward[K] } & { [K in keyof RuxIconForward & keyof RuxIconForwardAttributes as `attr:${K}`]?: RuxIconForwardAttributes[K] } & { [K in keyof RuxIconForward & keyof RuxIconForwardAttributes as `prop:${K}`]?: RuxIconForward[K] }; "rux-icon-forward-10": Omit & { [K in keyof RuxIconForward10 & keyof RuxIconForward10Attributes]?: RuxIconForward10[K] } & { [K in keyof RuxIconForward10 & keyof RuxIconForward10Attributes as `attr:${K}`]?: RuxIconForward10Attributes[K] } & { [K in keyof RuxIconForward10 & keyof RuxIconForward10Attributes as `prop:${K}`]?: RuxIconForward10[K] }; "rux-icon-forward-30": Omit & { [K in keyof RuxIconForward30 & keyof RuxIconForward30Attributes]?: RuxIconForward30[K] } & { [K in keyof RuxIconForward30 & keyof RuxIconForward30Attributes as `attr:${K}`]?: RuxIconForward30Attributes[K] } & { [K in keyof RuxIconForward30 & keyof RuxIconForward30Attributes as `prop:${K}`]?: RuxIconForward30[K] }; "rux-icon-forward-5": Omit & { [K in keyof RuxIconForward5 & keyof RuxIconForward5Attributes]?: RuxIconForward5[K] } & { [K in keyof RuxIconForward5 & keyof RuxIconForward5Attributes as `attr:${K}`]?: RuxIconForward5Attributes[K] } & { [K in keyof RuxIconForward5 & keyof RuxIconForward5Attributes as `prop:${K}`]?: RuxIconForward5[K] }; "rux-icon-free-breakfast": Omit & { [K in keyof RuxIconFreeBreakfast & keyof RuxIconFreeBreakfastAttributes]?: RuxIconFreeBreakfast[K] } & { [K in keyof RuxIconFreeBreakfast & keyof RuxIconFreeBreakfastAttributes as `attr:${K}`]?: RuxIconFreeBreakfastAttributes[K] } & { [K in keyof RuxIconFreeBreakfast & keyof RuxIconFreeBreakfastAttributes as `prop:${K}`]?: RuxIconFreeBreakfast[K] }; "rux-icon-fullscreen": Omit & { [K in keyof RuxIconFullscreen & keyof RuxIconFullscreenAttributes]?: RuxIconFullscreen[K] } & { [K in keyof RuxIconFullscreen & keyof RuxIconFullscreenAttributes as `attr:${K}`]?: RuxIconFullscreenAttributes[K] } & { [K in keyof RuxIconFullscreen & keyof RuxIconFullscreenAttributes as `prop:${K}`]?: RuxIconFullscreen[K] }; "rux-icon-fullscreen-exit": Omit & { [K in keyof RuxIconFullscreenExit & keyof RuxIconFullscreenExitAttributes]?: RuxIconFullscreenExit[K] } & { [K in keyof RuxIconFullscreenExit & keyof RuxIconFullscreenExitAttributes as `attr:${K}`]?: RuxIconFullscreenExitAttributes[K] } & { [K in keyof RuxIconFullscreenExit & keyof RuxIconFullscreenExitAttributes as `prop:${K}`]?: RuxIconFullscreenExit[K] }; "rux-icon-functions": Omit & { [K in keyof RuxIconFunctions & keyof RuxIconFunctionsAttributes]?: RuxIconFunctions[K] } & { [K in keyof RuxIconFunctions & keyof RuxIconFunctionsAttributes as `attr:${K}`]?: RuxIconFunctionsAttributes[K] } & { [K in keyof RuxIconFunctions & keyof RuxIconFunctionsAttributes as `prop:${K}`]?: RuxIconFunctions[K] }; "rux-icon-g-translate": Omit & { [K in keyof RuxIconGTranslate & keyof RuxIconGTranslateAttributes]?: RuxIconGTranslate[K] } & { [K in keyof RuxIconGTranslate & keyof RuxIconGTranslateAttributes as `attr:${K}`]?: RuxIconGTranslateAttributes[K] } & { [K in keyof RuxIconGTranslate & keyof RuxIconGTranslateAttributes as `prop:${K}`]?: RuxIconGTranslate[K] }; "rux-icon-gamepad": Omit & { [K in keyof RuxIconGamepad & keyof RuxIconGamepadAttributes]?: RuxIconGamepad[K] } & { [K in keyof RuxIconGamepad & keyof RuxIconGamepadAttributes as `attr:${K}`]?: RuxIconGamepadAttributes[K] } & { [K in keyof RuxIconGamepad & keyof RuxIconGamepadAttributes as `prop:${K}`]?: RuxIconGamepad[K] }; "rux-icon-games": Omit & { [K in keyof RuxIconGames & keyof RuxIconGamesAttributes]?: RuxIconGames[K] } & { [K in keyof RuxIconGames & keyof RuxIconGamesAttributes as `attr:${K}`]?: RuxIconGamesAttributes[K] } & { [K in keyof RuxIconGames & keyof RuxIconGamesAttributes as `prop:${K}`]?: RuxIconGames[K] }; "rux-icon-gavel": Omit & { [K in keyof RuxIconGavel & keyof RuxIconGavelAttributes]?: RuxIconGavel[K] } & { [K in keyof RuxIconGavel & keyof RuxIconGavelAttributes as `attr:${K}`]?: RuxIconGavelAttributes[K] } & { [K in keyof RuxIconGavel & keyof RuxIconGavelAttributes as `prop:${K}`]?: RuxIconGavel[K] }; "rux-icon-gesture": Omit & { [K in keyof RuxIconGesture & keyof RuxIconGestureAttributes]?: RuxIconGesture[K] } & { [K in keyof RuxIconGesture & keyof RuxIconGestureAttributes as `attr:${K}`]?: RuxIconGestureAttributes[K] } & { [K in keyof RuxIconGesture & keyof RuxIconGestureAttributes as `prop:${K}`]?: RuxIconGesture[K] }; "rux-icon-get-app": Omit & { [K in keyof RuxIconGetApp & keyof RuxIconGetAppAttributes]?: RuxIconGetApp[K] } & { [K in keyof RuxIconGetApp & keyof RuxIconGetAppAttributes as `attr:${K}`]?: RuxIconGetAppAttributes[K] } & { [K in keyof RuxIconGetApp & keyof RuxIconGetAppAttributes as `prop:${K}`]?: RuxIconGetApp[K] }; "rux-icon-gif": Omit & { [K in keyof RuxIconGif & keyof RuxIconGifAttributes]?: RuxIconGif[K] } & { [K in keyof RuxIconGif & keyof RuxIconGifAttributes as `attr:${K}`]?: RuxIconGifAttributes[K] } & { [K in keyof RuxIconGif & keyof RuxIconGifAttributes as `prop:${K}`]?: RuxIconGif[K] }; "rux-icon-golf-course": Omit & { [K in keyof RuxIconGolfCourse & keyof RuxIconGolfCourseAttributes]?: RuxIconGolfCourse[K] } & { [K in keyof RuxIconGolfCourse & keyof RuxIconGolfCourseAttributes as `attr:${K}`]?: RuxIconGolfCourseAttributes[K] } & { [K in keyof RuxIconGolfCourse & keyof RuxIconGolfCourseAttributes as `prop:${K}`]?: RuxIconGolfCourse[K] }; "rux-icon-gps-fixed": Omit & { [K in keyof RuxIconGpsFixed & keyof RuxIconGpsFixedAttributes]?: RuxIconGpsFixed[K] } & { [K in keyof RuxIconGpsFixed & keyof RuxIconGpsFixedAttributes as `attr:${K}`]?: RuxIconGpsFixedAttributes[K] } & { [K in keyof RuxIconGpsFixed & keyof RuxIconGpsFixedAttributes as `prop:${K}`]?: RuxIconGpsFixed[K] }; "rux-icon-gps-not-fixed": Omit & { [K in keyof RuxIconGpsNotFixed & keyof RuxIconGpsNotFixedAttributes]?: RuxIconGpsNotFixed[K] } & { [K in keyof RuxIconGpsNotFixed & keyof RuxIconGpsNotFixedAttributes as `attr:${K}`]?: RuxIconGpsNotFixedAttributes[K] } & { [K in keyof RuxIconGpsNotFixed & keyof RuxIconGpsNotFixedAttributes as `prop:${K}`]?: RuxIconGpsNotFixed[K] }; "rux-icon-gps-off": Omit & { [K in keyof RuxIconGpsOff & keyof RuxIconGpsOffAttributes]?: RuxIconGpsOff[K] } & { [K in keyof RuxIconGpsOff & keyof RuxIconGpsOffAttributes as `attr:${K}`]?: RuxIconGpsOffAttributes[K] } & { [K in keyof RuxIconGpsOff & keyof RuxIconGpsOffAttributes as `prop:${K}`]?: RuxIconGpsOff[K] }; "rux-icon-grade": Omit & { [K in keyof RuxIconGrade & keyof RuxIconGradeAttributes]?: RuxIconGrade[K] } & { [K in keyof RuxIconGrade & keyof RuxIconGradeAttributes as `attr:${K}`]?: RuxIconGradeAttributes[K] } & { [K in keyof RuxIconGrade & keyof RuxIconGradeAttributes as `prop:${K}`]?: RuxIconGrade[K] }; "rux-icon-gradient": Omit & { [K in keyof RuxIconGradient & keyof RuxIconGradientAttributes]?: RuxIconGradient[K] } & { [K in keyof RuxIconGradient & keyof RuxIconGradientAttributes as `attr:${K}`]?: RuxIconGradientAttributes[K] } & { [K in keyof RuxIconGradient & keyof RuxIconGradientAttributes as `prop:${K}`]?: RuxIconGradient[K] }; "rux-icon-grain": Omit & { [K in keyof RuxIconGrain & keyof RuxIconGrainAttributes]?: RuxIconGrain[K] } & { [K in keyof RuxIconGrain & keyof RuxIconGrainAttributes as `attr:${K}`]?: RuxIconGrainAttributes[K] } & { [K in keyof RuxIconGrain & keyof RuxIconGrainAttributes as `prop:${K}`]?: RuxIconGrain[K] }; "rux-icon-graphic-eq": Omit & { [K in keyof RuxIconGraphicEq & keyof RuxIconGraphicEqAttributes]?: RuxIconGraphicEq[K] } & { [K in keyof RuxIconGraphicEq & keyof RuxIconGraphicEqAttributes as `attr:${K}`]?: RuxIconGraphicEqAttributes[K] } & { [K in keyof RuxIconGraphicEq & keyof RuxIconGraphicEqAttributes as `prop:${K}`]?: RuxIconGraphicEq[K] }; "rux-icon-grid-off": Omit & { [K in keyof RuxIconGridOff & keyof RuxIconGridOffAttributes]?: RuxIconGridOff[K] } & { [K in keyof RuxIconGridOff & keyof RuxIconGridOffAttributes as `attr:${K}`]?: RuxIconGridOffAttributes[K] } & { [K in keyof RuxIconGridOff & keyof RuxIconGridOffAttributes as `prop:${K}`]?: RuxIconGridOff[K] }; "rux-icon-grid-on": Omit & { [K in keyof RuxIconGridOn & keyof RuxIconGridOnAttributes]?: RuxIconGridOn[K] } & { [K in keyof RuxIconGridOn & keyof RuxIconGridOnAttributes as `attr:${K}`]?: RuxIconGridOnAttributes[K] } & { [K in keyof RuxIconGridOn & keyof RuxIconGridOnAttributes as `prop:${K}`]?: RuxIconGridOn[K] }; "rux-icon-group": Omit & { [K in keyof RuxIconGroup & keyof RuxIconGroupAttributes]?: RuxIconGroup[K] } & { [K in keyof RuxIconGroup & keyof RuxIconGroupAttributes as `attr:${K}`]?: RuxIconGroupAttributes[K] } & { [K in keyof RuxIconGroup & keyof RuxIconGroupAttributes as `prop:${K}`]?: RuxIconGroup[K] }; "rux-icon-group-add": Omit & { [K in keyof RuxIconGroupAdd & keyof RuxIconGroupAddAttributes]?: RuxIconGroupAdd[K] } & { [K in keyof RuxIconGroupAdd & keyof RuxIconGroupAddAttributes as `attr:${K}`]?: RuxIconGroupAddAttributes[K] } & { [K in keyof RuxIconGroupAdd & keyof RuxIconGroupAddAttributes as `prop:${K}`]?: RuxIconGroupAdd[K] }; "rux-icon-group-work": Omit & { [K in keyof RuxIconGroupWork & keyof RuxIconGroupWorkAttributes]?: RuxIconGroupWork[K] } & { [K in keyof RuxIconGroupWork & keyof RuxIconGroupWorkAttributes as `attr:${K}`]?: RuxIconGroupWorkAttributes[K] } & { [K in keyof RuxIconGroupWork & keyof RuxIconGroupWorkAttributes as `prop:${K}`]?: RuxIconGroupWork[K] }; "rux-icon-hardware": Omit & { [K in keyof RuxIconHardware & keyof RuxIconHardwareAttributes]?: RuxIconHardware[K] } & { [K in keyof RuxIconHardware & keyof RuxIconHardwareAttributes as `attr:${K}`]?: RuxIconHardwareAttributes[K] } & { [K in keyof RuxIconHardware & keyof RuxIconHardwareAttributes as `prop:${K}`]?: RuxIconHardware[K] }; "rux-icon-hd": Omit & { [K in keyof RuxIconHd & keyof RuxIconHdAttributes]?: RuxIconHd[K] } & { [K in keyof RuxIconHd & keyof RuxIconHdAttributes as `attr:${K}`]?: RuxIconHdAttributes[K] } & { [K in keyof RuxIconHd & keyof RuxIconHdAttributes as `prop:${K}`]?: RuxIconHd[K] }; "rux-icon-hdr-off": Omit & { [K in keyof RuxIconHdrOff & keyof RuxIconHdrOffAttributes]?: RuxIconHdrOff[K] } & { [K in keyof RuxIconHdrOff & keyof RuxIconHdrOffAttributes as `attr:${K}`]?: RuxIconHdrOffAttributes[K] } & { [K in keyof RuxIconHdrOff & keyof RuxIconHdrOffAttributes as `prop:${K}`]?: RuxIconHdrOff[K] }; "rux-icon-hdr-on": Omit & { [K in keyof RuxIconHdrOn & keyof RuxIconHdrOnAttributes]?: RuxIconHdrOn[K] } & { [K in keyof RuxIconHdrOn & keyof RuxIconHdrOnAttributes as `attr:${K}`]?: RuxIconHdrOnAttributes[K] } & { [K in keyof RuxIconHdrOn & keyof RuxIconHdrOnAttributes as `prop:${K}`]?: RuxIconHdrOn[K] }; "rux-icon-hdr-strong": Omit & { [K in keyof RuxIconHdrStrong & keyof RuxIconHdrStrongAttributes]?: RuxIconHdrStrong[K] } & { [K in keyof RuxIconHdrStrong & keyof RuxIconHdrStrongAttributes as `attr:${K}`]?: RuxIconHdrStrongAttributes[K] } & { [K in keyof RuxIconHdrStrong & keyof RuxIconHdrStrongAttributes as `prop:${K}`]?: RuxIconHdrStrong[K] }; "rux-icon-hdr-weak": Omit & { [K in keyof RuxIconHdrWeak & keyof RuxIconHdrWeakAttributes]?: RuxIconHdrWeak[K] } & { [K in keyof RuxIconHdrWeak & keyof RuxIconHdrWeakAttributes as `attr:${K}`]?: RuxIconHdrWeakAttributes[K] } & { [K in keyof RuxIconHdrWeak & keyof RuxIconHdrWeakAttributes as `prop:${K}`]?: RuxIconHdrWeak[K] }; "rux-icon-headset": Omit & { [K in keyof RuxIconHeadset & keyof RuxIconHeadsetAttributes]?: RuxIconHeadset[K] } & { [K in keyof RuxIconHeadset & keyof RuxIconHeadsetAttributes as `attr:${K}`]?: RuxIconHeadsetAttributes[K] } & { [K in keyof RuxIconHeadset & keyof RuxIconHeadsetAttributes as `prop:${K}`]?: RuxIconHeadset[K] }; "rux-icon-headset-mic": Omit & { [K in keyof RuxIconHeadsetMic & keyof RuxIconHeadsetMicAttributes]?: RuxIconHeadsetMic[K] } & { [K in keyof RuxIconHeadsetMic & keyof RuxIconHeadsetMicAttributes as `attr:${K}`]?: RuxIconHeadsetMicAttributes[K] } & { [K in keyof RuxIconHeadsetMic & keyof RuxIconHeadsetMicAttributes as `prop:${K}`]?: RuxIconHeadsetMic[K] }; "rux-icon-healing": Omit & { [K in keyof RuxIconHealing & keyof RuxIconHealingAttributes]?: RuxIconHealing[K] } & { [K in keyof RuxIconHealing & keyof RuxIconHealingAttributes as `attr:${K}`]?: RuxIconHealingAttributes[K] } & { [K in keyof RuxIconHealing & keyof RuxIconHealingAttributes as `prop:${K}`]?: RuxIconHealing[K] }; "rux-icon-hearing": Omit & { [K in keyof RuxIconHearing & keyof RuxIconHearingAttributes]?: RuxIconHearing[K] } & { [K in keyof RuxIconHearing & keyof RuxIconHearingAttributes as `attr:${K}`]?: RuxIconHearingAttributes[K] } & { [K in keyof RuxIconHearing & keyof RuxIconHearingAttributes as `prop:${K}`]?: RuxIconHearing[K] }; "rux-icon-help": Omit & { [K in keyof RuxIconHelp & keyof RuxIconHelpAttributes]?: RuxIconHelp[K] } & { [K in keyof RuxIconHelp & keyof RuxIconHelpAttributes as `attr:${K}`]?: RuxIconHelpAttributes[K] } & { [K in keyof RuxIconHelp & keyof RuxIconHelpAttributes as `prop:${K}`]?: RuxIconHelp[K] }; "rux-icon-help-outline": Omit & { [K in keyof RuxIconHelpOutline & keyof RuxIconHelpOutlineAttributes]?: RuxIconHelpOutline[K] } & { [K in keyof RuxIconHelpOutline & keyof RuxIconHelpOutlineAttributes as `attr:${K}`]?: RuxIconHelpOutlineAttributes[K] } & { [K in keyof RuxIconHelpOutline & keyof RuxIconHelpOutlineAttributes as `prop:${K}`]?: RuxIconHelpOutline[K] }; "rux-icon-high-quality": Omit & { [K in keyof RuxIconHighQuality & keyof RuxIconHighQualityAttributes]?: RuxIconHighQuality[K] } & { [K in keyof RuxIconHighQuality & keyof RuxIconHighQualityAttributes as `attr:${K}`]?: RuxIconHighQualityAttributes[K] } & { [K in keyof RuxIconHighQuality & keyof RuxIconHighQualityAttributes as `prop:${K}`]?: RuxIconHighQuality[K] }; "rux-icon-highlight": Omit & { [K in keyof RuxIconHighlight & keyof RuxIconHighlightAttributes]?: RuxIconHighlight[K] } & { [K in keyof RuxIconHighlight & keyof RuxIconHighlightAttributes as `attr:${K}`]?: RuxIconHighlightAttributes[K] } & { [K in keyof RuxIconHighlight & keyof RuxIconHighlightAttributes as `prop:${K}`]?: RuxIconHighlight[K] }; "rux-icon-highlight-off": Omit & { [K in keyof RuxIconHighlightOff & keyof RuxIconHighlightOffAttributes]?: RuxIconHighlightOff[K] } & { [K in keyof RuxIconHighlightOff & keyof RuxIconHighlightOffAttributes as `attr:${K}`]?: RuxIconHighlightOffAttributes[K] } & { [K in keyof RuxIconHighlightOff & keyof RuxIconHighlightOffAttributes as `prop:${K}`]?: RuxIconHighlightOff[K] }; "rux-icon-history": Omit & { [K in keyof RuxIconHistory & keyof RuxIconHistoryAttributes]?: RuxIconHistory[K] } & { [K in keyof RuxIconHistory & keyof RuxIconHistoryAttributes as `attr:${K}`]?: RuxIconHistoryAttributes[K] } & { [K in keyof RuxIconHistory & keyof RuxIconHistoryAttributes as `prop:${K}`]?: RuxIconHistory[K] }; "rux-icon-home": Omit & { [K in keyof RuxIconHome & keyof RuxIconHomeAttributes]?: RuxIconHome[K] } & { [K in keyof RuxIconHome & keyof RuxIconHomeAttributes as `attr:${K}`]?: RuxIconHomeAttributes[K] } & { [K in keyof RuxIconHome & keyof RuxIconHomeAttributes as `prop:${K}`]?: RuxIconHome[K] }; "rux-icon-horizontal-split": Omit & { [K in keyof RuxIconHorizontalSplit & keyof RuxIconHorizontalSplitAttributes]?: RuxIconHorizontalSplit[K] } & { [K in keyof RuxIconHorizontalSplit & keyof RuxIconHorizontalSplitAttributes as `attr:${K}`]?: RuxIconHorizontalSplitAttributes[K] } & { [K in keyof RuxIconHorizontalSplit & keyof RuxIconHorizontalSplitAttributes as `prop:${K}`]?: RuxIconHorizontalSplit[K] }; "rux-icon-hot-tub": Omit & { [K in keyof RuxIconHotTub & keyof RuxIconHotTubAttributes]?: RuxIconHotTub[K] } & { [K in keyof RuxIconHotTub & keyof RuxIconHotTubAttributes as `attr:${K}`]?: RuxIconHotTubAttributes[K] } & { [K in keyof RuxIconHotTub & keyof RuxIconHotTubAttributes as `prop:${K}`]?: RuxIconHotTub[K] }; "rux-icon-hotel": Omit & { [K in keyof RuxIconHotel & keyof RuxIconHotelAttributes]?: RuxIconHotel[K] } & { [K in keyof RuxIconHotel & keyof RuxIconHotelAttributes as `attr:${K}`]?: RuxIconHotelAttributes[K] } & { [K in keyof RuxIconHotel & keyof RuxIconHotelAttributes as `prop:${K}`]?: RuxIconHotel[K] }; "rux-icon-hourglass-empty": Omit & { [K in keyof RuxIconHourglassEmpty & keyof RuxIconHourglassEmptyAttributes]?: RuxIconHourglassEmpty[K] } & { [K in keyof RuxIconHourglassEmpty & keyof RuxIconHourglassEmptyAttributes as `attr:${K}`]?: RuxIconHourglassEmptyAttributes[K] } & { [K in keyof RuxIconHourglassEmpty & keyof RuxIconHourglassEmptyAttributes as `prop:${K}`]?: RuxIconHourglassEmpty[K] }; "rux-icon-hourglass-full": Omit & { [K in keyof RuxIconHourglassFull & keyof RuxIconHourglassFullAttributes]?: RuxIconHourglassFull[K] } & { [K in keyof RuxIconHourglassFull & keyof RuxIconHourglassFullAttributes as `attr:${K}`]?: RuxIconHourglassFullAttributes[K] } & { [K in keyof RuxIconHourglassFull & keyof RuxIconHourglassFullAttributes as `prop:${K}`]?: RuxIconHourglassFull[K] }; "rux-icon-how-to-reg": Omit & { [K in keyof RuxIconHowToReg & keyof RuxIconHowToRegAttributes]?: RuxIconHowToReg[K] } & { [K in keyof RuxIconHowToReg & keyof RuxIconHowToRegAttributes as `attr:${K}`]?: RuxIconHowToRegAttributes[K] } & { [K in keyof RuxIconHowToReg & keyof RuxIconHowToRegAttributes as `prop:${K}`]?: RuxIconHowToReg[K] }; "rux-icon-how-to-vote": Omit & { [K in keyof RuxIconHowToVote & keyof RuxIconHowToVoteAttributes]?: RuxIconHowToVote[K] } & { [K in keyof RuxIconHowToVote & keyof RuxIconHowToVoteAttributes as `attr:${K}`]?: RuxIconHowToVoteAttributes[K] } & { [K in keyof RuxIconHowToVote & keyof RuxIconHowToVoteAttributes as `prop:${K}`]?: RuxIconHowToVote[K] }; "rux-icon-http": Omit & { [K in keyof RuxIconHttp & keyof RuxIconHttpAttributes]?: RuxIconHttp[K] } & { [K in keyof RuxIconHttp & keyof RuxIconHttpAttributes as `attr:${K}`]?: RuxIconHttpAttributes[K] } & { [K in keyof RuxIconHttp & keyof RuxIconHttpAttributes as `prop:${K}`]?: RuxIconHttp[K] }; "rux-icon-https": Omit & { [K in keyof RuxIconHttps & keyof RuxIconHttpsAttributes]?: RuxIconHttps[K] } & { [K in keyof RuxIconHttps & keyof RuxIconHttpsAttributes as `attr:${K}`]?: RuxIconHttpsAttributes[K] } & { [K in keyof RuxIconHttps & keyof RuxIconHttpsAttributes as `prop:${K}`]?: RuxIconHttps[K] }; "rux-icon-image": Omit & { [K in keyof RuxIconImage & keyof RuxIconImageAttributes]?: RuxIconImage[K] } & { [K in keyof RuxIconImage & keyof RuxIconImageAttributes as `attr:${K}`]?: RuxIconImageAttributes[K] } & { [K in keyof RuxIconImage & keyof RuxIconImageAttributes as `prop:${K}`]?: RuxIconImage[K] }; "rux-icon-image-aspect-ratio": Omit & { [K in keyof RuxIconImageAspectRatio & keyof RuxIconImageAspectRatioAttributes]?: RuxIconImageAspectRatio[K] } & { [K in keyof RuxIconImageAspectRatio & keyof RuxIconImageAspectRatioAttributes as `attr:${K}`]?: RuxIconImageAspectRatioAttributes[K] } & { [K in keyof RuxIconImageAspectRatio & keyof RuxIconImageAspectRatioAttributes as `prop:${K}`]?: RuxIconImageAspectRatio[K] }; "rux-icon-image-search": Omit & { [K in keyof RuxIconImageSearch & keyof RuxIconImageSearchAttributes]?: RuxIconImageSearch[K] } & { [K in keyof RuxIconImageSearch & keyof RuxIconImageSearchAttributes as `attr:${K}`]?: RuxIconImageSearchAttributes[K] } & { [K in keyof RuxIconImageSearch & keyof RuxIconImageSearchAttributes as `prop:${K}`]?: RuxIconImageSearch[K] }; "rux-icon-import-contacts": Omit & { [K in keyof RuxIconImportContacts & keyof RuxIconImportContactsAttributes]?: RuxIconImportContacts[K] } & { [K in keyof RuxIconImportContacts & keyof RuxIconImportContactsAttributes as `attr:${K}`]?: RuxIconImportContactsAttributes[K] } & { [K in keyof RuxIconImportContacts & keyof RuxIconImportContactsAttributes as `prop:${K}`]?: RuxIconImportContacts[K] }; "rux-icon-import-export": Omit & { [K in keyof RuxIconImportExport & keyof RuxIconImportExportAttributes]?: RuxIconImportExport[K] } & { [K in keyof RuxIconImportExport & keyof RuxIconImportExportAttributes as `attr:${K}`]?: RuxIconImportExportAttributes[K] } & { [K in keyof RuxIconImportExport & keyof RuxIconImportExportAttributes as `prop:${K}`]?: RuxIconImportExport[K] }; "rux-icon-important-devices": Omit & { [K in keyof RuxIconImportantDevices & keyof RuxIconImportantDevicesAttributes]?: RuxIconImportantDevices[K] } & { [K in keyof RuxIconImportantDevices & keyof RuxIconImportantDevicesAttributes as `attr:${K}`]?: RuxIconImportantDevicesAttributes[K] } & { [K in keyof RuxIconImportantDevices & keyof RuxIconImportantDevicesAttributes as `prop:${K}`]?: RuxIconImportantDevices[K] }; "rux-icon-inbox": Omit & { [K in keyof RuxIconInbox & keyof RuxIconInboxAttributes]?: RuxIconInbox[K] } & { [K in keyof RuxIconInbox & keyof RuxIconInboxAttributes as `attr:${K}`]?: RuxIconInboxAttributes[K] } & { [K in keyof RuxIconInbox & keyof RuxIconInboxAttributes as `prop:${K}`]?: RuxIconInbox[K] }; "rux-icon-indeterminate-check-box": Omit & { [K in keyof RuxIconIndeterminateCheckBox & keyof RuxIconIndeterminateCheckBoxAttributes]?: RuxIconIndeterminateCheckBox[K] } & { [K in keyof RuxIconIndeterminateCheckBox & keyof RuxIconIndeterminateCheckBoxAttributes as `attr:${K}`]?: RuxIconIndeterminateCheckBoxAttributes[K] } & { [K in keyof RuxIconIndeterminateCheckBox & keyof RuxIconIndeterminateCheckBoxAttributes as `prop:${K}`]?: RuxIconIndeterminateCheckBox[K] }; "rux-icon-info": Omit & { [K in keyof RuxIconInfo & keyof RuxIconInfoAttributes]?: RuxIconInfo[K] } & { [K in keyof RuxIconInfo & keyof RuxIconInfoAttributes as `attr:${K}`]?: RuxIconInfoAttributes[K] } & { [K in keyof RuxIconInfo & keyof RuxIconInfoAttributes as `prop:${K}`]?: RuxIconInfo[K] }; "rux-icon-input": Omit & { [K in keyof RuxIconInput & keyof RuxIconInputAttributes]?: RuxIconInput[K] } & { [K in keyof RuxIconInput & keyof RuxIconInputAttributes as `attr:${K}`]?: RuxIconInputAttributes[K] } & { [K in keyof RuxIconInput & keyof RuxIconInputAttributes as `prop:${K}`]?: RuxIconInput[K] }; "rux-icon-insert-chart": Omit & { [K in keyof RuxIconInsertChart & keyof RuxIconInsertChartAttributes]?: RuxIconInsertChart[K] } & { [K in keyof RuxIconInsertChart & keyof RuxIconInsertChartAttributes as `attr:${K}`]?: RuxIconInsertChartAttributes[K] } & { [K in keyof RuxIconInsertChart & keyof RuxIconInsertChartAttributes as `prop:${K}`]?: RuxIconInsertChart[K] }; "rux-icon-insert-chart-outlined": Omit & { [K in keyof RuxIconInsertChartOutlined & keyof RuxIconInsertChartOutlinedAttributes]?: RuxIconInsertChartOutlined[K] } & { [K in keyof RuxIconInsertChartOutlined & keyof RuxIconInsertChartOutlinedAttributes as `attr:${K}`]?: RuxIconInsertChartOutlinedAttributes[K] } & { [K in keyof RuxIconInsertChartOutlined & keyof RuxIconInsertChartOutlinedAttributes as `prop:${K}`]?: RuxIconInsertChartOutlined[K] }; "rux-icon-insert-comment": Omit & { [K in keyof RuxIconInsertComment & keyof RuxIconInsertCommentAttributes]?: RuxIconInsertComment[K] } & { [K in keyof RuxIconInsertComment & keyof RuxIconInsertCommentAttributes as `attr:${K}`]?: RuxIconInsertCommentAttributes[K] } & { [K in keyof RuxIconInsertComment & keyof RuxIconInsertCommentAttributes as `prop:${K}`]?: RuxIconInsertComment[K] }; "rux-icon-insert-drive-file": Omit & { [K in keyof RuxIconInsertDriveFile & keyof RuxIconInsertDriveFileAttributes]?: RuxIconInsertDriveFile[K] } & { [K in keyof RuxIconInsertDriveFile & keyof RuxIconInsertDriveFileAttributes as `attr:${K}`]?: RuxIconInsertDriveFileAttributes[K] } & { [K in keyof RuxIconInsertDriveFile & keyof RuxIconInsertDriveFileAttributes as `prop:${K}`]?: RuxIconInsertDriveFile[K] }; "rux-icon-insert-emoticon": Omit & { [K in keyof RuxIconInsertEmoticon & keyof RuxIconInsertEmoticonAttributes]?: RuxIconInsertEmoticon[K] } & { [K in keyof RuxIconInsertEmoticon & keyof RuxIconInsertEmoticonAttributes as `attr:${K}`]?: RuxIconInsertEmoticonAttributes[K] } & { [K in keyof RuxIconInsertEmoticon & keyof RuxIconInsertEmoticonAttributes as `prop:${K}`]?: RuxIconInsertEmoticon[K] }; "rux-icon-insert-invitation": Omit & { [K in keyof RuxIconInsertInvitation & keyof RuxIconInsertInvitationAttributes]?: RuxIconInsertInvitation[K] } & { [K in keyof RuxIconInsertInvitation & keyof RuxIconInsertInvitationAttributes as `attr:${K}`]?: RuxIconInsertInvitationAttributes[K] } & { [K in keyof RuxIconInsertInvitation & keyof RuxIconInsertInvitationAttributes as `prop:${K}`]?: RuxIconInsertInvitation[K] }; "rux-icon-insert-link": Omit & { [K in keyof RuxIconInsertLink & keyof RuxIconInsertLinkAttributes]?: RuxIconInsertLink[K] } & { [K in keyof RuxIconInsertLink & keyof RuxIconInsertLinkAttributes as `attr:${K}`]?: RuxIconInsertLinkAttributes[K] } & { [K in keyof RuxIconInsertLink & keyof RuxIconInsertLinkAttributes as `prop:${K}`]?: RuxIconInsertLink[K] }; "rux-icon-insert-photo": Omit & { [K in keyof RuxIconInsertPhoto & keyof RuxIconInsertPhotoAttributes]?: RuxIconInsertPhoto[K] } & { [K in keyof RuxIconInsertPhoto & keyof RuxIconInsertPhotoAttributes as `attr:${K}`]?: RuxIconInsertPhotoAttributes[K] } & { [K in keyof RuxIconInsertPhoto & keyof RuxIconInsertPhotoAttributes as `prop:${K}`]?: RuxIconInsertPhoto[K] }; "rux-icon-invert-colors": Omit & { [K in keyof RuxIconInvertColors & keyof RuxIconInvertColorsAttributes]?: RuxIconInvertColors[K] } & { [K in keyof RuxIconInvertColors & keyof RuxIconInvertColorsAttributes as `attr:${K}`]?: RuxIconInvertColorsAttributes[K] } & { [K in keyof RuxIconInvertColors & keyof RuxIconInvertColorsAttributes as `prop:${K}`]?: RuxIconInvertColors[K] }; "rux-icon-invert-colors-off": Omit & { [K in keyof RuxIconInvertColorsOff & keyof RuxIconInvertColorsOffAttributes]?: RuxIconInvertColorsOff[K] } & { [K in keyof RuxIconInvertColorsOff & keyof RuxIconInvertColorsOffAttributes as `attr:${K}`]?: RuxIconInvertColorsOffAttributes[K] } & { [K in keyof RuxIconInvertColorsOff & keyof RuxIconInvertColorsOffAttributes as `prop:${K}`]?: RuxIconInvertColorsOff[K] }; "rux-icon-iso": Omit & { [K in keyof RuxIconIso & keyof RuxIconIsoAttributes]?: RuxIconIso[K] } & { [K in keyof RuxIconIso & keyof RuxIconIsoAttributes as `attr:${K}`]?: RuxIconIsoAttributes[K] } & { [K in keyof RuxIconIso & keyof RuxIconIsoAttributes as `prop:${K}`]?: RuxIconIso[K] }; "rux-icon-keyboard": Omit & { [K in keyof RuxIconKeyboard & keyof RuxIconKeyboardAttributes]?: RuxIconKeyboard[K] } & { [K in keyof RuxIconKeyboard & keyof RuxIconKeyboardAttributes as `attr:${K}`]?: RuxIconKeyboardAttributes[K] } & { [K in keyof RuxIconKeyboard & keyof RuxIconKeyboardAttributes as `prop:${K}`]?: RuxIconKeyboard[K] }; "rux-icon-keyboard-arrow-down": Omit & { [K in keyof RuxIconKeyboardArrowDown & keyof RuxIconKeyboardArrowDownAttributes]?: RuxIconKeyboardArrowDown[K] } & { [K in keyof RuxIconKeyboardArrowDown & keyof RuxIconKeyboardArrowDownAttributes as `attr:${K}`]?: RuxIconKeyboardArrowDownAttributes[K] } & { [K in keyof RuxIconKeyboardArrowDown & keyof RuxIconKeyboardArrowDownAttributes as `prop:${K}`]?: RuxIconKeyboardArrowDown[K] }; "rux-icon-keyboard-arrow-left": Omit & { [K in keyof RuxIconKeyboardArrowLeft & keyof RuxIconKeyboardArrowLeftAttributes]?: RuxIconKeyboardArrowLeft[K] } & { [K in keyof RuxIconKeyboardArrowLeft & keyof RuxIconKeyboardArrowLeftAttributes as `attr:${K}`]?: RuxIconKeyboardArrowLeftAttributes[K] } & { [K in keyof RuxIconKeyboardArrowLeft & keyof RuxIconKeyboardArrowLeftAttributes as `prop:${K}`]?: RuxIconKeyboardArrowLeft[K] }; "rux-icon-keyboard-arrow-right": Omit & { [K in keyof RuxIconKeyboardArrowRight & keyof RuxIconKeyboardArrowRightAttributes]?: RuxIconKeyboardArrowRight[K] } & { [K in keyof RuxIconKeyboardArrowRight & keyof RuxIconKeyboardArrowRightAttributes as `attr:${K}`]?: RuxIconKeyboardArrowRightAttributes[K] } & { [K in keyof RuxIconKeyboardArrowRight & keyof RuxIconKeyboardArrowRightAttributes as `prop:${K}`]?: RuxIconKeyboardArrowRight[K] }; "rux-icon-keyboard-arrow-up": Omit & { [K in keyof RuxIconKeyboardArrowUp & keyof RuxIconKeyboardArrowUpAttributes]?: RuxIconKeyboardArrowUp[K] } & { [K in keyof RuxIconKeyboardArrowUp & keyof RuxIconKeyboardArrowUpAttributes as `attr:${K}`]?: RuxIconKeyboardArrowUpAttributes[K] } & { [K in keyof RuxIconKeyboardArrowUp & keyof RuxIconKeyboardArrowUpAttributes as `prop:${K}`]?: RuxIconKeyboardArrowUp[K] }; "rux-icon-keyboard-backspace": Omit & { [K in keyof RuxIconKeyboardBackspace & keyof RuxIconKeyboardBackspaceAttributes]?: RuxIconKeyboardBackspace[K] } & { [K in keyof RuxIconKeyboardBackspace & keyof RuxIconKeyboardBackspaceAttributes as `attr:${K}`]?: RuxIconKeyboardBackspaceAttributes[K] } & { [K in keyof RuxIconKeyboardBackspace & keyof RuxIconKeyboardBackspaceAttributes as `prop:${K}`]?: RuxIconKeyboardBackspace[K] }; "rux-icon-keyboard-capslock": Omit & { [K in keyof RuxIconKeyboardCapslock & keyof RuxIconKeyboardCapslockAttributes]?: RuxIconKeyboardCapslock[K] } & { [K in keyof RuxIconKeyboardCapslock & keyof RuxIconKeyboardCapslockAttributes as `attr:${K}`]?: RuxIconKeyboardCapslockAttributes[K] } & { [K in keyof RuxIconKeyboardCapslock & keyof RuxIconKeyboardCapslockAttributes as `prop:${K}`]?: RuxIconKeyboardCapslock[K] }; "rux-icon-keyboard-hide": Omit & { [K in keyof RuxIconKeyboardHide & keyof RuxIconKeyboardHideAttributes]?: RuxIconKeyboardHide[K] } & { [K in keyof RuxIconKeyboardHide & keyof RuxIconKeyboardHideAttributes as `attr:${K}`]?: RuxIconKeyboardHideAttributes[K] } & { [K in keyof RuxIconKeyboardHide & keyof RuxIconKeyboardHideAttributes as `prop:${K}`]?: RuxIconKeyboardHide[K] }; "rux-icon-keyboard-return": Omit & { [K in keyof RuxIconKeyboardReturn & keyof RuxIconKeyboardReturnAttributes]?: RuxIconKeyboardReturn[K] } & { [K in keyof RuxIconKeyboardReturn & keyof RuxIconKeyboardReturnAttributes as `attr:${K}`]?: RuxIconKeyboardReturnAttributes[K] } & { [K in keyof RuxIconKeyboardReturn & keyof RuxIconKeyboardReturnAttributes as `prop:${K}`]?: RuxIconKeyboardReturn[K] }; "rux-icon-keyboard-tab": Omit & { [K in keyof RuxIconKeyboardTab & keyof RuxIconKeyboardTabAttributes]?: RuxIconKeyboardTab[K] } & { [K in keyof RuxIconKeyboardTab & keyof RuxIconKeyboardTabAttributes as `attr:${K}`]?: RuxIconKeyboardTabAttributes[K] } & { [K in keyof RuxIconKeyboardTab & keyof RuxIconKeyboardTabAttributes as `prop:${K}`]?: RuxIconKeyboardTab[K] }; "rux-icon-keyboard-voice": Omit & { [K in keyof RuxIconKeyboardVoice & keyof RuxIconKeyboardVoiceAttributes]?: RuxIconKeyboardVoice[K] } & { [K in keyof RuxIconKeyboardVoice & keyof RuxIconKeyboardVoiceAttributes as `attr:${K}`]?: RuxIconKeyboardVoiceAttributes[K] } & { [K in keyof RuxIconKeyboardVoice & keyof RuxIconKeyboardVoiceAttributes as `prop:${K}`]?: RuxIconKeyboardVoice[K] }; "rux-icon-kitchen": Omit & { [K in keyof RuxIconKitchen & keyof RuxIconKitchenAttributes]?: RuxIconKitchen[K] } & { [K in keyof RuxIconKitchen & keyof RuxIconKitchenAttributes as `attr:${K}`]?: RuxIconKitchenAttributes[K] } & { [K in keyof RuxIconKitchen & keyof RuxIconKitchenAttributes as `prop:${K}`]?: RuxIconKitchen[K] }; "rux-icon-label": Omit & { [K in keyof RuxIconLabel & keyof RuxIconLabelAttributes]?: RuxIconLabel[K] } & { [K in keyof RuxIconLabel & keyof RuxIconLabelAttributes as `attr:${K}`]?: RuxIconLabelAttributes[K] } & { [K in keyof RuxIconLabel & keyof RuxIconLabelAttributes as `prop:${K}`]?: RuxIconLabel[K] }; "rux-icon-label-important": Omit & { [K in keyof RuxIconLabelImportant & keyof RuxIconLabelImportantAttributes]?: RuxIconLabelImportant[K] } & { [K in keyof RuxIconLabelImportant & keyof RuxIconLabelImportantAttributes as `attr:${K}`]?: RuxIconLabelImportantAttributes[K] } & { [K in keyof RuxIconLabelImportant & keyof RuxIconLabelImportantAttributes as `prop:${K}`]?: RuxIconLabelImportant[K] }; "rux-icon-label-off": Omit & { [K in keyof RuxIconLabelOff & keyof RuxIconLabelOffAttributes]?: RuxIconLabelOff[K] } & { [K in keyof RuxIconLabelOff & keyof RuxIconLabelOffAttributes as `attr:${K}`]?: RuxIconLabelOffAttributes[K] } & { [K in keyof RuxIconLabelOff & keyof RuxIconLabelOffAttributes as `prop:${K}`]?: RuxIconLabelOff[K] }; "rux-icon-landscape": Omit & { [K in keyof RuxIconLandscape & keyof RuxIconLandscapeAttributes]?: RuxIconLandscape[K] } & { [K in keyof RuxIconLandscape & keyof RuxIconLandscapeAttributes as `attr:${K}`]?: RuxIconLandscapeAttributes[K] } & { [K in keyof RuxIconLandscape & keyof RuxIconLandscapeAttributes as `prop:${K}`]?: RuxIconLandscape[K] }; "rux-icon-language": Omit & { [K in keyof RuxIconLanguage & keyof RuxIconLanguageAttributes]?: RuxIconLanguage[K] } & { [K in keyof RuxIconLanguage & keyof RuxIconLanguageAttributes as `attr:${K}`]?: RuxIconLanguageAttributes[K] } & { [K in keyof RuxIconLanguage & keyof RuxIconLanguageAttributes as `prop:${K}`]?: RuxIconLanguage[K] }; "rux-icon-laptop": Omit & { [K in keyof RuxIconLaptop & keyof RuxIconLaptopAttributes]?: RuxIconLaptop[K] } & { [K in keyof RuxIconLaptop & keyof RuxIconLaptopAttributes as `attr:${K}`]?: RuxIconLaptopAttributes[K] } & { [K in keyof RuxIconLaptop & keyof RuxIconLaptopAttributes as `prop:${K}`]?: RuxIconLaptop[K] }; "rux-icon-laptop-chromebook": Omit & { [K in keyof RuxIconLaptopChromebook & keyof RuxIconLaptopChromebookAttributes]?: RuxIconLaptopChromebook[K] } & { [K in keyof RuxIconLaptopChromebook & keyof RuxIconLaptopChromebookAttributes as `attr:${K}`]?: RuxIconLaptopChromebookAttributes[K] } & { [K in keyof RuxIconLaptopChromebook & keyof RuxIconLaptopChromebookAttributes as `prop:${K}`]?: RuxIconLaptopChromebook[K] }; "rux-icon-laptop-mac": Omit & { [K in keyof RuxIconLaptopMac & keyof RuxIconLaptopMacAttributes]?: RuxIconLaptopMac[K] } & { [K in keyof RuxIconLaptopMac & keyof RuxIconLaptopMacAttributes as `attr:${K}`]?: RuxIconLaptopMacAttributes[K] } & { [K in keyof RuxIconLaptopMac & keyof RuxIconLaptopMacAttributes as `prop:${K}`]?: RuxIconLaptopMac[K] }; "rux-icon-laptop-windows": Omit & { [K in keyof RuxIconLaptopWindows & keyof RuxIconLaptopWindowsAttributes]?: RuxIconLaptopWindows[K] } & { [K in keyof RuxIconLaptopWindows & keyof RuxIconLaptopWindowsAttributes as `attr:${K}`]?: RuxIconLaptopWindowsAttributes[K] } & { [K in keyof RuxIconLaptopWindows & keyof RuxIconLaptopWindowsAttributes as `prop:${K}`]?: RuxIconLaptopWindows[K] }; "rux-icon-last-page": Omit & { [K in keyof RuxIconLastPage & keyof RuxIconLastPageAttributes]?: RuxIconLastPage[K] } & { [K in keyof RuxIconLastPage & keyof RuxIconLastPageAttributes as `attr:${K}`]?: RuxIconLastPageAttributes[K] } & { [K in keyof RuxIconLastPage & keyof RuxIconLastPageAttributes as `prop:${K}`]?: RuxIconLastPage[K] }; "rux-icon-launch": Omit & { [K in keyof RuxIconLaunch & keyof RuxIconLaunchAttributes]?: RuxIconLaunch[K] } & { [K in keyof RuxIconLaunch & keyof RuxIconLaunchAttributes as `attr:${K}`]?: RuxIconLaunchAttributes[K] } & { [K in keyof RuxIconLaunch & keyof RuxIconLaunchAttributes as `prop:${K}`]?: RuxIconLaunch[K] }; "rux-icon-layers": Omit & { [K in keyof RuxIconLayers & keyof RuxIconLayersAttributes]?: RuxIconLayers[K] } & { [K in keyof RuxIconLayers & keyof RuxIconLayersAttributes as `attr:${K}`]?: RuxIconLayersAttributes[K] } & { [K in keyof RuxIconLayers & keyof RuxIconLayersAttributes as `prop:${K}`]?: RuxIconLayers[K] }; "rux-icon-layers-clear": Omit & { [K in keyof RuxIconLayersClear & keyof RuxIconLayersClearAttributes]?: RuxIconLayersClear[K] } & { [K in keyof RuxIconLayersClear & keyof RuxIconLayersClearAttributes as `attr:${K}`]?: RuxIconLayersClearAttributes[K] } & { [K in keyof RuxIconLayersClear & keyof RuxIconLayersClearAttributes as `prop:${K}`]?: RuxIconLayersClear[K] }; "rux-icon-leak-add": Omit & { [K in keyof RuxIconLeakAdd & keyof RuxIconLeakAddAttributes]?: RuxIconLeakAdd[K] } & { [K in keyof RuxIconLeakAdd & keyof RuxIconLeakAddAttributes as `attr:${K}`]?: RuxIconLeakAddAttributes[K] } & { [K in keyof RuxIconLeakAdd & keyof RuxIconLeakAddAttributes as `prop:${K}`]?: RuxIconLeakAdd[K] }; "rux-icon-leak-remove": Omit & { [K in keyof RuxIconLeakRemove & keyof RuxIconLeakRemoveAttributes]?: RuxIconLeakRemove[K] } & { [K in keyof RuxIconLeakRemove & keyof RuxIconLeakRemoveAttributes as `attr:${K}`]?: RuxIconLeakRemoveAttributes[K] } & { [K in keyof RuxIconLeakRemove & keyof RuxIconLeakRemoveAttributes as `prop:${K}`]?: RuxIconLeakRemove[K] }; "rux-icon-lens": Omit & { [K in keyof RuxIconLens & keyof RuxIconLensAttributes]?: RuxIconLens[K] } & { [K in keyof RuxIconLens & keyof RuxIconLensAttributes as `attr:${K}`]?: RuxIconLensAttributes[K] } & { [K in keyof RuxIconLens & keyof RuxIconLensAttributes as `prop:${K}`]?: RuxIconLens[K] }; "rux-icon-library-add": Omit & { [K in keyof RuxIconLibraryAdd & keyof RuxIconLibraryAddAttributes]?: RuxIconLibraryAdd[K] } & { [K in keyof RuxIconLibraryAdd & keyof RuxIconLibraryAddAttributes as `attr:${K}`]?: RuxIconLibraryAddAttributes[K] } & { [K in keyof RuxIconLibraryAdd & keyof RuxIconLibraryAddAttributes as `prop:${K}`]?: RuxIconLibraryAdd[K] }; "rux-icon-library-books": Omit & { [K in keyof RuxIconLibraryBooks & keyof RuxIconLibraryBooksAttributes]?: RuxIconLibraryBooks[K] } & { [K in keyof RuxIconLibraryBooks & keyof RuxIconLibraryBooksAttributes as `attr:${K}`]?: RuxIconLibraryBooksAttributes[K] } & { [K in keyof RuxIconLibraryBooks & keyof RuxIconLibraryBooksAttributes as `prop:${K}`]?: RuxIconLibraryBooks[K] }; "rux-icon-library-music": Omit & { [K in keyof RuxIconLibraryMusic & keyof RuxIconLibraryMusicAttributes]?: RuxIconLibraryMusic[K] } & { [K in keyof RuxIconLibraryMusic & keyof RuxIconLibraryMusicAttributes as `attr:${K}`]?: RuxIconLibraryMusicAttributes[K] } & { [K in keyof RuxIconLibraryMusic & keyof RuxIconLibraryMusicAttributes as `prop:${K}`]?: RuxIconLibraryMusic[K] }; "rux-icon-line-style": Omit & { [K in keyof RuxIconLineStyle & keyof RuxIconLineStyleAttributes]?: RuxIconLineStyle[K] } & { [K in keyof RuxIconLineStyle & keyof RuxIconLineStyleAttributes as `attr:${K}`]?: RuxIconLineStyleAttributes[K] } & { [K in keyof RuxIconLineStyle & keyof RuxIconLineStyleAttributes as `prop:${K}`]?: RuxIconLineStyle[K] }; "rux-icon-line-weight": Omit & { [K in keyof RuxIconLineWeight & keyof RuxIconLineWeightAttributes]?: RuxIconLineWeight[K] } & { [K in keyof RuxIconLineWeight & keyof RuxIconLineWeightAttributes as `attr:${K}`]?: RuxIconLineWeightAttributes[K] } & { [K in keyof RuxIconLineWeight & keyof RuxIconLineWeightAttributes as `prop:${K}`]?: RuxIconLineWeight[K] }; "rux-icon-linear-scale": Omit & { [K in keyof RuxIconLinearScale & keyof RuxIconLinearScaleAttributes]?: RuxIconLinearScale[K] } & { [K in keyof RuxIconLinearScale & keyof RuxIconLinearScaleAttributes as `attr:${K}`]?: RuxIconLinearScaleAttributes[K] } & { [K in keyof RuxIconLinearScale & keyof RuxIconLinearScaleAttributes as `prop:${K}`]?: RuxIconLinearScale[K] }; "rux-icon-link": Omit & { [K in keyof RuxIconLink & keyof RuxIconLinkAttributes]?: RuxIconLink[K] } & { [K in keyof RuxIconLink & keyof RuxIconLinkAttributes as `attr:${K}`]?: RuxIconLinkAttributes[K] } & { [K in keyof RuxIconLink & keyof RuxIconLinkAttributes as `prop:${K}`]?: RuxIconLink[K] }; "rux-icon-link-off": Omit & { [K in keyof RuxIconLinkOff & keyof RuxIconLinkOffAttributes]?: RuxIconLinkOff[K] } & { [K in keyof RuxIconLinkOff & keyof RuxIconLinkOffAttributes as `attr:${K}`]?: RuxIconLinkOffAttributes[K] } & { [K in keyof RuxIconLinkOff & keyof RuxIconLinkOffAttributes as `prop:${K}`]?: RuxIconLinkOff[K] }; "rux-icon-linked-camera": Omit & { [K in keyof RuxIconLinkedCamera & keyof RuxIconLinkedCameraAttributes]?: RuxIconLinkedCamera[K] } & { [K in keyof RuxIconLinkedCamera & keyof RuxIconLinkedCameraAttributes as `attr:${K}`]?: RuxIconLinkedCameraAttributes[K] } & { [K in keyof RuxIconLinkedCamera & keyof RuxIconLinkedCameraAttributes as `prop:${K}`]?: RuxIconLinkedCamera[K] }; "rux-icon-list": Omit & { [K in keyof RuxIconList & keyof RuxIconListAttributes]?: RuxIconList[K] } & { [K in keyof RuxIconList & keyof RuxIconListAttributes as `attr:${K}`]?: RuxIconListAttributes[K] } & { [K in keyof RuxIconList & keyof RuxIconListAttributes as `prop:${K}`]?: RuxIconList[K] }; "rux-icon-list-alt": Omit & { [K in keyof RuxIconListAlt & keyof RuxIconListAltAttributes]?: RuxIconListAlt[K] } & { [K in keyof RuxIconListAlt & keyof RuxIconListAltAttributes as `attr:${K}`]?: RuxIconListAltAttributes[K] } & { [K in keyof RuxIconListAlt & keyof RuxIconListAltAttributes as `prop:${K}`]?: RuxIconListAlt[K] }; "rux-icon-live-help": Omit & { [K in keyof RuxIconLiveHelp & keyof RuxIconLiveHelpAttributes]?: RuxIconLiveHelp[K] } & { [K in keyof RuxIconLiveHelp & keyof RuxIconLiveHelpAttributes as `attr:${K}`]?: RuxIconLiveHelpAttributes[K] } & { [K in keyof RuxIconLiveHelp & keyof RuxIconLiveHelpAttributes as `prop:${K}`]?: RuxIconLiveHelp[K] }; "rux-icon-live-tv": Omit & { [K in keyof RuxIconLiveTv & keyof RuxIconLiveTvAttributes]?: RuxIconLiveTv[K] } & { [K in keyof RuxIconLiveTv & keyof RuxIconLiveTvAttributes as `attr:${K}`]?: RuxIconLiveTvAttributes[K] } & { [K in keyof RuxIconLiveTv & keyof RuxIconLiveTvAttributes as `prop:${K}`]?: RuxIconLiveTv[K] }; "rux-icon-local-activity": Omit & { [K in keyof RuxIconLocalActivity & keyof RuxIconLocalActivityAttributes]?: RuxIconLocalActivity[K] } & { [K in keyof RuxIconLocalActivity & keyof RuxIconLocalActivityAttributes as `attr:${K}`]?: RuxIconLocalActivityAttributes[K] } & { [K in keyof RuxIconLocalActivity & keyof RuxIconLocalActivityAttributes as `prop:${K}`]?: RuxIconLocalActivity[K] }; "rux-icon-local-airport": Omit & { [K in keyof RuxIconLocalAirport & keyof RuxIconLocalAirportAttributes]?: RuxIconLocalAirport[K] } & { [K in keyof RuxIconLocalAirport & keyof RuxIconLocalAirportAttributes as `attr:${K}`]?: RuxIconLocalAirportAttributes[K] } & { [K in keyof RuxIconLocalAirport & keyof RuxIconLocalAirportAttributes as `prop:${K}`]?: RuxIconLocalAirport[K] }; "rux-icon-local-atm": Omit & { [K in keyof RuxIconLocalAtm & keyof RuxIconLocalAtmAttributes]?: RuxIconLocalAtm[K] } & { [K in keyof RuxIconLocalAtm & keyof RuxIconLocalAtmAttributes as `attr:${K}`]?: RuxIconLocalAtmAttributes[K] } & { [K in keyof RuxIconLocalAtm & keyof RuxIconLocalAtmAttributes as `prop:${K}`]?: RuxIconLocalAtm[K] }; "rux-icon-local-bar": Omit & { [K in keyof RuxIconLocalBar & keyof RuxIconLocalBarAttributes]?: RuxIconLocalBar[K] } & { [K in keyof RuxIconLocalBar & keyof RuxIconLocalBarAttributes as `attr:${K}`]?: RuxIconLocalBarAttributes[K] } & { [K in keyof RuxIconLocalBar & keyof RuxIconLocalBarAttributes as `prop:${K}`]?: RuxIconLocalBar[K] }; "rux-icon-local-cafe": Omit & { [K in keyof RuxIconLocalCafe & keyof RuxIconLocalCafeAttributes]?: RuxIconLocalCafe[K] } & { [K in keyof RuxIconLocalCafe & keyof RuxIconLocalCafeAttributes as `attr:${K}`]?: RuxIconLocalCafeAttributes[K] } & { [K in keyof RuxIconLocalCafe & keyof RuxIconLocalCafeAttributes as `prop:${K}`]?: RuxIconLocalCafe[K] }; "rux-icon-local-car-wash": Omit & { [K in keyof RuxIconLocalCarWash & keyof RuxIconLocalCarWashAttributes]?: RuxIconLocalCarWash[K] } & { [K in keyof RuxIconLocalCarWash & keyof RuxIconLocalCarWashAttributes as `attr:${K}`]?: RuxIconLocalCarWashAttributes[K] } & { [K in keyof RuxIconLocalCarWash & keyof RuxIconLocalCarWashAttributes as `prop:${K}`]?: RuxIconLocalCarWash[K] }; "rux-icon-local-convenience-store": Omit & { [K in keyof RuxIconLocalConvenienceStore & keyof RuxIconLocalConvenienceStoreAttributes]?: RuxIconLocalConvenienceStore[K] } & { [K in keyof RuxIconLocalConvenienceStore & keyof RuxIconLocalConvenienceStoreAttributes as `attr:${K}`]?: RuxIconLocalConvenienceStoreAttributes[K] } & { [K in keyof RuxIconLocalConvenienceStore & keyof RuxIconLocalConvenienceStoreAttributes as `prop:${K}`]?: RuxIconLocalConvenienceStore[K] }; "rux-icon-local-dining": Omit & { [K in keyof RuxIconLocalDining & keyof RuxIconLocalDiningAttributes]?: RuxIconLocalDining[K] } & { [K in keyof RuxIconLocalDining & keyof RuxIconLocalDiningAttributes as `attr:${K}`]?: RuxIconLocalDiningAttributes[K] } & { [K in keyof RuxIconLocalDining & keyof RuxIconLocalDiningAttributes as `prop:${K}`]?: RuxIconLocalDining[K] }; "rux-icon-local-drink": Omit & { [K in keyof RuxIconLocalDrink & keyof RuxIconLocalDrinkAttributes]?: RuxIconLocalDrink[K] } & { [K in keyof RuxIconLocalDrink & keyof RuxIconLocalDrinkAttributes as `attr:${K}`]?: RuxIconLocalDrinkAttributes[K] } & { [K in keyof RuxIconLocalDrink & keyof RuxIconLocalDrinkAttributes as `prop:${K}`]?: RuxIconLocalDrink[K] }; "rux-icon-local-gas-station": Omit & { [K in keyof RuxIconLocalGasStation & keyof RuxIconLocalGasStationAttributes]?: RuxIconLocalGasStation[K] } & { [K in keyof RuxIconLocalGasStation & keyof RuxIconLocalGasStationAttributes as `attr:${K}`]?: RuxIconLocalGasStationAttributes[K] } & { [K in keyof RuxIconLocalGasStation & keyof RuxIconLocalGasStationAttributes as `prop:${K}`]?: RuxIconLocalGasStation[K] }; "rux-icon-local-grocery-store": Omit & { [K in keyof RuxIconLocalGroceryStore & keyof RuxIconLocalGroceryStoreAttributes]?: RuxIconLocalGroceryStore[K] } & { [K in keyof RuxIconLocalGroceryStore & keyof RuxIconLocalGroceryStoreAttributes as `attr:${K}`]?: RuxIconLocalGroceryStoreAttributes[K] } & { [K in keyof RuxIconLocalGroceryStore & keyof RuxIconLocalGroceryStoreAttributes as `prop:${K}`]?: RuxIconLocalGroceryStore[K] }; "rux-icon-local-hospital": Omit & { [K in keyof RuxIconLocalHospital & keyof RuxIconLocalHospitalAttributes]?: RuxIconLocalHospital[K] } & { [K in keyof RuxIconLocalHospital & keyof RuxIconLocalHospitalAttributes as `attr:${K}`]?: RuxIconLocalHospitalAttributes[K] } & { [K in keyof RuxIconLocalHospital & keyof RuxIconLocalHospitalAttributes as `prop:${K}`]?: RuxIconLocalHospital[K] }; "rux-icon-local-hotel": Omit & { [K in keyof RuxIconLocalHotel & keyof RuxIconLocalHotelAttributes]?: RuxIconLocalHotel[K] } & { [K in keyof RuxIconLocalHotel & keyof RuxIconLocalHotelAttributes as `attr:${K}`]?: RuxIconLocalHotelAttributes[K] } & { [K in keyof RuxIconLocalHotel & keyof RuxIconLocalHotelAttributes as `prop:${K}`]?: RuxIconLocalHotel[K] }; "rux-icon-local-laundry-service": Omit & { [K in keyof RuxIconLocalLaundryService & keyof RuxIconLocalLaundryServiceAttributes]?: RuxIconLocalLaundryService[K] } & { [K in keyof RuxIconLocalLaundryService & keyof RuxIconLocalLaundryServiceAttributes as `attr:${K}`]?: RuxIconLocalLaundryServiceAttributes[K] } & { [K in keyof RuxIconLocalLaundryService & keyof RuxIconLocalLaundryServiceAttributes as `prop:${K}`]?: RuxIconLocalLaundryService[K] }; "rux-icon-local-library": Omit & { [K in keyof RuxIconLocalLibrary & keyof RuxIconLocalLibraryAttributes]?: RuxIconLocalLibrary[K] } & { [K in keyof RuxIconLocalLibrary & keyof RuxIconLocalLibraryAttributes as `attr:${K}`]?: RuxIconLocalLibraryAttributes[K] } & { [K in keyof RuxIconLocalLibrary & keyof RuxIconLocalLibraryAttributes as `prop:${K}`]?: RuxIconLocalLibrary[K] }; "rux-icon-local-mall": Omit & { [K in keyof RuxIconLocalMall & keyof RuxIconLocalMallAttributes]?: RuxIconLocalMall[K] } & { [K in keyof RuxIconLocalMall & keyof RuxIconLocalMallAttributes as `attr:${K}`]?: RuxIconLocalMallAttributes[K] } & { [K in keyof RuxIconLocalMall & keyof RuxIconLocalMallAttributes as `prop:${K}`]?: RuxIconLocalMall[K] }; "rux-icon-local-movies": Omit & { [K in keyof RuxIconLocalMovies & keyof RuxIconLocalMoviesAttributes]?: RuxIconLocalMovies[K] } & { [K in keyof RuxIconLocalMovies & keyof RuxIconLocalMoviesAttributes as `attr:${K}`]?: RuxIconLocalMoviesAttributes[K] } & { [K in keyof RuxIconLocalMovies & keyof RuxIconLocalMoviesAttributes as `prop:${K}`]?: RuxIconLocalMovies[K] }; "rux-icon-local-offer": Omit & { [K in keyof RuxIconLocalOffer & keyof RuxIconLocalOfferAttributes]?: RuxIconLocalOffer[K] } & { [K in keyof RuxIconLocalOffer & keyof RuxIconLocalOfferAttributes as `attr:${K}`]?: RuxIconLocalOfferAttributes[K] } & { [K in keyof RuxIconLocalOffer & keyof RuxIconLocalOfferAttributes as `prop:${K}`]?: RuxIconLocalOffer[K] }; "rux-icon-local-parking": Omit & { [K in keyof RuxIconLocalParking & keyof RuxIconLocalParkingAttributes]?: RuxIconLocalParking[K] } & { [K in keyof RuxIconLocalParking & keyof RuxIconLocalParkingAttributes as `attr:${K}`]?: RuxIconLocalParkingAttributes[K] } & { [K in keyof RuxIconLocalParking & keyof RuxIconLocalParkingAttributes as `prop:${K}`]?: RuxIconLocalParking[K] }; "rux-icon-local-pharmacy": Omit & { [K in keyof RuxIconLocalPharmacy & keyof RuxIconLocalPharmacyAttributes]?: RuxIconLocalPharmacy[K] } & { [K in keyof RuxIconLocalPharmacy & keyof RuxIconLocalPharmacyAttributes as `attr:${K}`]?: RuxIconLocalPharmacyAttributes[K] } & { [K in keyof RuxIconLocalPharmacy & keyof RuxIconLocalPharmacyAttributes as `prop:${K}`]?: RuxIconLocalPharmacy[K] }; "rux-icon-local-phone": Omit & { [K in keyof RuxIconLocalPhone & keyof RuxIconLocalPhoneAttributes]?: RuxIconLocalPhone[K] } & { [K in keyof RuxIconLocalPhone & keyof RuxIconLocalPhoneAttributes as `attr:${K}`]?: RuxIconLocalPhoneAttributes[K] } & { [K in keyof RuxIconLocalPhone & keyof RuxIconLocalPhoneAttributes as `prop:${K}`]?: RuxIconLocalPhone[K] }; "rux-icon-local-play": Omit & { [K in keyof RuxIconLocalPlay & keyof RuxIconLocalPlayAttributes]?: RuxIconLocalPlay[K] } & { [K in keyof RuxIconLocalPlay & keyof RuxIconLocalPlayAttributes as `attr:${K}`]?: RuxIconLocalPlayAttributes[K] } & { [K in keyof RuxIconLocalPlay & keyof RuxIconLocalPlayAttributes as `prop:${K}`]?: RuxIconLocalPlay[K] }; "rux-icon-local-post-office": Omit & { [K in keyof RuxIconLocalPostOffice & keyof RuxIconLocalPostOfficeAttributes]?: RuxIconLocalPostOffice[K] } & { [K in keyof RuxIconLocalPostOffice & keyof RuxIconLocalPostOfficeAttributes as `attr:${K}`]?: RuxIconLocalPostOfficeAttributes[K] } & { [K in keyof RuxIconLocalPostOffice & keyof RuxIconLocalPostOfficeAttributes as `prop:${K}`]?: RuxIconLocalPostOffice[K] }; "rux-icon-local-printshop": Omit & { [K in keyof RuxIconLocalPrintshop & keyof RuxIconLocalPrintshopAttributes]?: RuxIconLocalPrintshop[K] } & { [K in keyof RuxIconLocalPrintshop & keyof RuxIconLocalPrintshopAttributes as `attr:${K}`]?: RuxIconLocalPrintshopAttributes[K] } & { [K in keyof RuxIconLocalPrintshop & keyof RuxIconLocalPrintshopAttributes as `prop:${K}`]?: RuxIconLocalPrintshop[K] }; "rux-icon-local-see": Omit & { [K in keyof RuxIconLocalSee & keyof RuxIconLocalSeeAttributes]?: RuxIconLocalSee[K] } & { [K in keyof RuxIconLocalSee & keyof RuxIconLocalSeeAttributes as `attr:${K}`]?: RuxIconLocalSeeAttributes[K] } & { [K in keyof RuxIconLocalSee & keyof RuxIconLocalSeeAttributes as `prop:${K}`]?: RuxIconLocalSee[K] }; "rux-icon-local-shipping": Omit & { [K in keyof RuxIconLocalShipping & keyof RuxIconLocalShippingAttributes]?: RuxIconLocalShipping[K] } & { [K in keyof RuxIconLocalShipping & keyof RuxIconLocalShippingAttributes as `attr:${K}`]?: RuxIconLocalShippingAttributes[K] } & { [K in keyof RuxIconLocalShipping & keyof RuxIconLocalShippingAttributes as `prop:${K}`]?: RuxIconLocalShipping[K] }; "rux-icon-local-taxi": Omit & { [K in keyof RuxIconLocalTaxi & keyof RuxIconLocalTaxiAttributes]?: RuxIconLocalTaxi[K] } & { [K in keyof RuxIconLocalTaxi & keyof RuxIconLocalTaxiAttributes as `attr:${K}`]?: RuxIconLocalTaxiAttributes[K] } & { [K in keyof RuxIconLocalTaxi & keyof RuxIconLocalTaxiAttributes as `prop:${K}`]?: RuxIconLocalTaxi[K] }; "rux-icon-location-city": Omit & { [K in keyof RuxIconLocationCity & keyof RuxIconLocationCityAttributes]?: RuxIconLocationCity[K] } & { [K in keyof RuxIconLocationCity & keyof RuxIconLocationCityAttributes as `attr:${K}`]?: RuxIconLocationCityAttributes[K] } & { [K in keyof RuxIconLocationCity & keyof RuxIconLocationCityAttributes as `prop:${K}`]?: RuxIconLocationCity[K] }; "rux-icon-location-disabled": Omit & { [K in keyof RuxIconLocationDisabled & keyof RuxIconLocationDisabledAttributes]?: RuxIconLocationDisabled[K] } & { [K in keyof RuxIconLocationDisabled & keyof RuxIconLocationDisabledAttributes as `attr:${K}`]?: RuxIconLocationDisabledAttributes[K] } & { [K in keyof RuxIconLocationDisabled & keyof RuxIconLocationDisabledAttributes as `prop:${K}`]?: RuxIconLocationDisabled[K] }; "rux-icon-location-off": Omit & { [K in keyof RuxIconLocationOff & keyof RuxIconLocationOffAttributes]?: RuxIconLocationOff[K] } & { [K in keyof RuxIconLocationOff & keyof RuxIconLocationOffAttributes as `attr:${K}`]?: RuxIconLocationOffAttributes[K] } & { [K in keyof RuxIconLocationOff & keyof RuxIconLocationOffAttributes as `prop:${K}`]?: RuxIconLocationOff[K] }; "rux-icon-location-on": Omit & { [K in keyof RuxIconLocationOn & keyof RuxIconLocationOnAttributes]?: RuxIconLocationOn[K] } & { [K in keyof RuxIconLocationOn & keyof RuxIconLocationOnAttributes as `attr:${K}`]?: RuxIconLocationOnAttributes[K] } & { [K in keyof RuxIconLocationOn & keyof RuxIconLocationOnAttributes as `prop:${K}`]?: RuxIconLocationOn[K] }; "rux-icon-location-searching": Omit & { [K in keyof RuxIconLocationSearching & keyof RuxIconLocationSearchingAttributes]?: RuxIconLocationSearching[K] } & { [K in keyof RuxIconLocationSearching & keyof RuxIconLocationSearchingAttributes as `attr:${K}`]?: RuxIconLocationSearchingAttributes[K] } & { [K in keyof RuxIconLocationSearching & keyof RuxIconLocationSearchingAttributes as `prop:${K}`]?: RuxIconLocationSearching[K] }; "rux-icon-lock": Omit & { [K in keyof RuxIconLock & keyof RuxIconLockAttributes]?: RuxIconLock[K] } & { [K in keyof RuxIconLock & keyof RuxIconLockAttributes as `attr:${K}`]?: RuxIconLockAttributes[K] } & { [K in keyof RuxIconLock & keyof RuxIconLockAttributes as `prop:${K}`]?: RuxIconLock[K] }; "rux-icon-lock-open": Omit & { [K in keyof RuxIconLockOpen & keyof RuxIconLockOpenAttributes]?: RuxIconLockOpen[K] } & { [K in keyof RuxIconLockOpen & keyof RuxIconLockOpenAttributes as `attr:${K}`]?: RuxIconLockOpenAttributes[K] } & { [K in keyof RuxIconLockOpen & keyof RuxIconLockOpenAttributes as `prop:${K}`]?: RuxIconLockOpen[K] }; "rux-icon-looks": Omit & { [K in keyof RuxIconLooks & keyof RuxIconLooksAttributes]?: RuxIconLooks[K] } & { [K in keyof RuxIconLooks & keyof RuxIconLooksAttributes as `attr:${K}`]?: RuxIconLooksAttributes[K] } & { [K in keyof RuxIconLooks & keyof RuxIconLooksAttributes as `prop:${K}`]?: RuxIconLooks[K] }; "rux-icon-looks-1": Omit & { [K in keyof RuxIconLooks1 & keyof RuxIconLooks1Attributes]?: RuxIconLooks1[K] } & { [K in keyof RuxIconLooks1 & keyof RuxIconLooks1Attributes as `attr:${K}`]?: RuxIconLooks1Attributes[K] } & { [K in keyof RuxIconLooks1 & keyof RuxIconLooks1Attributes as `prop:${K}`]?: RuxIconLooks1[K] }; "rux-icon-looks-2": Omit & { [K in keyof RuxIconLooks2 & keyof RuxIconLooks2Attributes]?: RuxIconLooks2[K] } & { [K in keyof RuxIconLooks2 & keyof RuxIconLooks2Attributes as `attr:${K}`]?: RuxIconLooks2Attributes[K] } & { [K in keyof RuxIconLooks2 & keyof RuxIconLooks2Attributes as `prop:${K}`]?: RuxIconLooks2[K] }; "rux-icon-looks-3": Omit & { [K in keyof RuxIconLooks3 & keyof RuxIconLooks3Attributes]?: RuxIconLooks3[K] } & { [K in keyof RuxIconLooks3 & keyof RuxIconLooks3Attributes as `attr:${K}`]?: RuxIconLooks3Attributes[K] } & { [K in keyof RuxIconLooks3 & keyof RuxIconLooks3Attributes as `prop:${K}`]?: RuxIconLooks3[K] }; "rux-icon-looks-4": Omit & { [K in keyof RuxIconLooks4 & keyof RuxIconLooks4Attributes]?: RuxIconLooks4[K] } & { [K in keyof RuxIconLooks4 & keyof RuxIconLooks4Attributes as `attr:${K}`]?: RuxIconLooks4Attributes[K] } & { [K in keyof RuxIconLooks4 & keyof RuxIconLooks4Attributes as `prop:${K}`]?: RuxIconLooks4[K] }; "rux-icon-looks-5": Omit & { [K in keyof RuxIconLooks5 & keyof RuxIconLooks5Attributes]?: RuxIconLooks5[K] } & { [K in keyof RuxIconLooks5 & keyof RuxIconLooks5Attributes as `attr:${K}`]?: RuxIconLooks5Attributes[K] } & { [K in keyof RuxIconLooks5 & keyof RuxIconLooks5Attributes as `prop:${K}`]?: RuxIconLooks5[K] }; "rux-icon-looks-6": Omit & { [K in keyof RuxIconLooks6 & keyof RuxIconLooks6Attributes]?: RuxIconLooks6[K] } & { [K in keyof RuxIconLooks6 & keyof RuxIconLooks6Attributes as `attr:${K}`]?: RuxIconLooks6Attributes[K] } & { [K in keyof RuxIconLooks6 & keyof RuxIconLooks6Attributes as `prop:${K}`]?: RuxIconLooks6[K] }; "rux-icon-loop": Omit & { [K in keyof RuxIconLoop & keyof RuxIconLoopAttributes]?: RuxIconLoop[K] } & { [K in keyof RuxIconLoop & keyof RuxIconLoopAttributes as `attr:${K}`]?: RuxIconLoopAttributes[K] } & { [K in keyof RuxIconLoop & keyof RuxIconLoopAttributes as `prop:${K}`]?: RuxIconLoop[K] }; "rux-icon-loupe": Omit & { [K in keyof RuxIconLoupe & keyof RuxIconLoupeAttributes]?: RuxIconLoupe[K] } & { [K in keyof RuxIconLoupe & keyof RuxIconLoupeAttributes as `attr:${K}`]?: RuxIconLoupeAttributes[K] } & { [K in keyof RuxIconLoupe & keyof RuxIconLoupeAttributes as `prop:${K}`]?: RuxIconLoupe[K] }; "rux-icon-low-priority": Omit & { [K in keyof RuxIconLowPriority & keyof RuxIconLowPriorityAttributes]?: RuxIconLowPriority[K] } & { [K in keyof RuxIconLowPriority & keyof RuxIconLowPriorityAttributes as `attr:${K}`]?: RuxIconLowPriorityAttributes[K] } & { [K in keyof RuxIconLowPriority & keyof RuxIconLowPriorityAttributes as `prop:${K}`]?: RuxIconLowPriority[K] }; "rux-icon-loyalty": Omit & { [K in keyof RuxIconLoyalty & keyof RuxIconLoyaltyAttributes]?: RuxIconLoyalty[K] } & { [K in keyof RuxIconLoyalty & keyof RuxIconLoyaltyAttributes as `attr:${K}`]?: RuxIconLoyaltyAttributes[K] } & { [K in keyof RuxIconLoyalty & keyof RuxIconLoyaltyAttributes as `prop:${K}`]?: RuxIconLoyalty[K] }; "rux-icon-mail": Omit & { [K in keyof RuxIconMail & keyof RuxIconMailAttributes]?: RuxIconMail[K] } & { [K in keyof RuxIconMail & keyof RuxIconMailAttributes as `attr:${K}`]?: RuxIconMailAttributes[K] } & { [K in keyof RuxIconMail & keyof RuxIconMailAttributes as `prop:${K}`]?: RuxIconMail[K] }; "rux-icon-mail-outline": Omit & { [K in keyof RuxIconMailOutline & keyof RuxIconMailOutlineAttributes]?: RuxIconMailOutline[K] } & { [K in keyof RuxIconMailOutline & keyof RuxIconMailOutlineAttributes as `attr:${K}`]?: RuxIconMailOutlineAttributes[K] } & { [K in keyof RuxIconMailOutline & keyof RuxIconMailOutlineAttributes as `prop:${K}`]?: RuxIconMailOutline[K] }; "rux-icon-map": Omit & { [K in keyof RuxIconMap & keyof RuxIconMapAttributes]?: RuxIconMap[K] } & { [K in keyof RuxIconMap & keyof RuxIconMapAttributes as `attr:${K}`]?: RuxIconMapAttributes[K] } & { [K in keyof RuxIconMap & keyof RuxIconMapAttributes as `prop:${K}`]?: RuxIconMap[K] }; "rux-icon-markunread": Omit & { [K in keyof RuxIconMarkunread & keyof RuxIconMarkunreadAttributes]?: RuxIconMarkunread[K] } & { [K in keyof RuxIconMarkunread & keyof RuxIconMarkunreadAttributes as `attr:${K}`]?: RuxIconMarkunreadAttributes[K] } & { [K in keyof RuxIconMarkunread & keyof RuxIconMarkunreadAttributes as `prop:${K}`]?: RuxIconMarkunread[K] }; "rux-icon-markunread-mailbox": Omit & { [K in keyof RuxIconMarkunreadMailbox & keyof RuxIconMarkunreadMailboxAttributes]?: RuxIconMarkunreadMailbox[K] } & { [K in keyof RuxIconMarkunreadMailbox & keyof RuxIconMarkunreadMailboxAttributes as `attr:${K}`]?: RuxIconMarkunreadMailboxAttributes[K] } & { [K in keyof RuxIconMarkunreadMailbox & keyof RuxIconMarkunreadMailboxAttributes as `prop:${K}`]?: RuxIconMarkunreadMailbox[K] }; "rux-icon-maximize": Omit & { [K in keyof RuxIconMaximize & keyof RuxIconMaximizeAttributes]?: RuxIconMaximize[K] } & { [K in keyof RuxIconMaximize & keyof RuxIconMaximizeAttributes as `attr:${K}`]?: RuxIconMaximizeAttributes[K] } & { [K in keyof RuxIconMaximize & keyof RuxIconMaximizeAttributes as `prop:${K}`]?: RuxIconMaximize[K] }; "rux-icon-meeting-room": Omit & { [K in keyof RuxIconMeetingRoom & keyof RuxIconMeetingRoomAttributes]?: RuxIconMeetingRoom[K] } & { [K in keyof RuxIconMeetingRoom & keyof RuxIconMeetingRoomAttributes as `attr:${K}`]?: RuxIconMeetingRoomAttributes[K] } & { [K in keyof RuxIconMeetingRoom & keyof RuxIconMeetingRoomAttributes as `prop:${K}`]?: RuxIconMeetingRoom[K] }; "rux-icon-memory": Omit & { [K in keyof RuxIconMemory & keyof RuxIconMemoryAttributes]?: RuxIconMemory[K] } & { [K in keyof RuxIconMemory & keyof RuxIconMemoryAttributes as `attr:${K}`]?: RuxIconMemoryAttributes[K] } & { [K in keyof RuxIconMemory & keyof RuxIconMemoryAttributes as `prop:${K}`]?: RuxIconMemory[K] }; "rux-icon-menu": Omit & { [K in keyof RuxIconMenu & keyof RuxIconMenuAttributes]?: RuxIconMenu[K] } & { [K in keyof RuxIconMenu & keyof RuxIconMenuAttributes as `attr:${K}`]?: RuxIconMenuAttributes[K] } & { [K in keyof RuxIconMenu & keyof RuxIconMenuAttributes as `prop:${K}`]?: RuxIconMenu[K] }; "rux-icon-merge-type": Omit & { [K in keyof RuxIconMergeType & keyof RuxIconMergeTypeAttributes]?: RuxIconMergeType[K] } & { [K in keyof RuxIconMergeType & keyof RuxIconMergeTypeAttributes as `attr:${K}`]?: RuxIconMergeTypeAttributes[K] } & { [K in keyof RuxIconMergeType & keyof RuxIconMergeTypeAttributes as `prop:${K}`]?: RuxIconMergeType[K] }; "rux-icon-message": Omit & { [K in keyof RuxIconMessage & keyof RuxIconMessageAttributes]?: RuxIconMessage[K] } & { [K in keyof RuxIconMessage & keyof RuxIconMessageAttributes as `attr:${K}`]?: RuxIconMessageAttributes[K] } & { [K in keyof RuxIconMessage & keyof RuxIconMessageAttributes as `prop:${K}`]?: RuxIconMessage[K] }; "rux-icon-mic": Omit & { [K in keyof RuxIconMic & keyof RuxIconMicAttributes]?: RuxIconMic[K] } & { [K in keyof RuxIconMic & keyof RuxIconMicAttributes as `attr:${K}`]?: RuxIconMicAttributes[K] } & { [K in keyof RuxIconMic & keyof RuxIconMicAttributes as `prop:${K}`]?: RuxIconMic[K] }; "rux-icon-mic-none": Omit & { [K in keyof RuxIconMicNone & keyof RuxIconMicNoneAttributes]?: RuxIconMicNone[K] } & { [K in keyof RuxIconMicNone & keyof RuxIconMicNoneAttributes as `attr:${K}`]?: RuxIconMicNoneAttributes[K] } & { [K in keyof RuxIconMicNone & keyof RuxIconMicNoneAttributes as `prop:${K}`]?: RuxIconMicNone[K] }; "rux-icon-mic-off": Omit & { [K in keyof RuxIconMicOff & keyof RuxIconMicOffAttributes]?: RuxIconMicOff[K] } & { [K in keyof RuxIconMicOff & keyof RuxIconMicOffAttributes as `attr:${K}`]?: RuxIconMicOffAttributes[K] } & { [K in keyof RuxIconMicOff & keyof RuxIconMicOffAttributes as `prop:${K}`]?: RuxIconMicOff[K] }; "rux-icon-minimize": Omit & { [K in keyof RuxIconMinimize & keyof RuxIconMinimizeAttributes]?: RuxIconMinimize[K] } & { [K in keyof RuxIconMinimize & keyof RuxIconMinimizeAttributes as `attr:${K}`]?: RuxIconMinimizeAttributes[K] } & { [K in keyof RuxIconMinimize & keyof RuxIconMinimizeAttributes as `prop:${K}`]?: RuxIconMinimize[K] }; "rux-icon-missed-video-call": Omit & { [K in keyof RuxIconMissedVideoCall & keyof RuxIconMissedVideoCallAttributes]?: RuxIconMissedVideoCall[K] } & { [K in keyof RuxIconMissedVideoCall & keyof RuxIconMissedVideoCallAttributes as `attr:${K}`]?: RuxIconMissedVideoCallAttributes[K] } & { [K in keyof RuxIconMissedVideoCall & keyof RuxIconMissedVideoCallAttributes as `prop:${K}`]?: RuxIconMissedVideoCall[K] }; "rux-icon-mission": Omit & { [K in keyof RuxIconMission & keyof RuxIconMissionAttributes]?: RuxIconMission[K] } & { [K in keyof RuxIconMission & keyof RuxIconMissionAttributes as `attr:${K}`]?: RuxIconMissionAttributes[K] } & { [K in keyof RuxIconMission & keyof RuxIconMissionAttributes as `prop:${K}`]?: RuxIconMission[K] }; "rux-icon-mms": Omit & { [K in keyof RuxIconMms & keyof RuxIconMmsAttributes]?: RuxIconMms[K] } & { [K in keyof RuxIconMms & keyof RuxIconMmsAttributes as `attr:${K}`]?: RuxIconMmsAttributes[K] } & { [K in keyof RuxIconMms & keyof RuxIconMmsAttributes as `prop:${K}`]?: RuxIconMms[K] }; "rux-icon-mobile-friendly": Omit & { [K in keyof RuxIconMobileFriendly & keyof RuxIconMobileFriendlyAttributes]?: RuxIconMobileFriendly[K] } & { [K in keyof RuxIconMobileFriendly & keyof RuxIconMobileFriendlyAttributes as `attr:${K}`]?: RuxIconMobileFriendlyAttributes[K] } & { [K in keyof RuxIconMobileFriendly & keyof RuxIconMobileFriendlyAttributes as `prop:${K}`]?: RuxIconMobileFriendly[K] }; "rux-icon-mobile-off": Omit & { [K in keyof RuxIconMobileOff & keyof RuxIconMobileOffAttributes]?: RuxIconMobileOff[K] } & { [K in keyof RuxIconMobileOff & keyof RuxIconMobileOffAttributes as `attr:${K}`]?: RuxIconMobileOffAttributes[K] } & { [K in keyof RuxIconMobileOff & keyof RuxIconMobileOffAttributes as `prop:${K}`]?: RuxIconMobileOff[K] }; "rux-icon-mobile-screen-share": Omit & { [K in keyof RuxIconMobileScreenShare & keyof RuxIconMobileScreenShareAttributes]?: RuxIconMobileScreenShare[K] } & { [K in keyof RuxIconMobileScreenShare & keyof RuxIconMobileScreenShareAttributes as `attr:${K}`]?: RuxIconMobileScreenShareAttributes[K] } & { [K in keyof RuxIconMobileScreenShare & keyof RuxIconMobileScreenShareAttributes as `prop:${K}`]?: RuxIconMobileScreenShare[K] }; "rux-icon-mode-comment": Omit & { [K in keyof RuxIconModeComment & keyof RuxIconModeCommentAttributes]?: RuxIconModeComment[K] } & { [K in keyof RuxIconModeComment & keyof RuxIconModeCommentAttributes as `attr:${K}`]?: RuxIconModeCommentAttributes[K] } & { [K in keyof RuxIconModeComment & keyof RuxIconModeCommentAttributes as `prop:${K}`]?: RuxIconModeComment[K] }; "rux-icon-monetization-on": Omit & { [K in keyof RuxIconMonetizationOn & keyof RuxIconMonetizationOnAttributes]?: RuxIconMonetizationOn[K] } & { [K in keyof RuxIconMonetizationOn & keyof RuxIconMonetizationOnAttributes as `attr:${K}`]?: RuxIconMonetizationOnAttributes[K] } & { [K in keyof RuxIconMonetizationOn & keyof RuxIconMonetizationOnAttributes as `prop:${K}`]?: RuxIconMonetizationOn[K] }; "rux-icon-money": Omit & { [K in keyof RuxIconMoney & keyof RuxIconMoneyAttributes]?: RuxIconMoney[K] } & { [K in keyof RuxIconMoney & keyof RuxIconMoneyAttributes as `attr:${K}`]?: RuxIconMoneyAttributes[K] } & { [K in keyof RuxIconMoney & keyof RuxIconMoneyAttributes as `prop:${K}`]?: RuxIconMoney[K] }; "rux-icon-money-off": Omit & { [K in keyof RuxIconMoneyOff & keyof RuxIconMoneyOffAttributes]?: RuxIconMoneyOff[K] } & { [K in keyof RuxIconMoneyOff & keyof RuxIconMoneyOffAttributes as `attr:${K}`]?: RuxIconMoneyOffAttributes[K] } & { [K in keyof RuxIconMoneyOff & keyof RuxIconMoneyOffAttributes as `prop:${K}`]?: RuxIconMoneyOff[K] }; "rux-icon-monochrome-photos": Omit & { [K in keyof RuxIconMonochromePhotos & keyof RuxIconMonochromePhotosAttributes]?: RuxIconMonochromePhotos[K] } & { [K in keyof RuxIconMonochromePhotos & keyof RuxIconMonochromePhotosAttributes as `attr:${K}`]?: RuxIconMonochromePhotosAttributes[K] } & { [K in keyof RuxIconMonochromePhotos & keyof RuxIconMonochromePhotosAttributes as `prop:${K}`]?: RuxIconMonochromePhotos[K] }; "rux-icon-mood": Omit & { [K in keyof RuxIconMood & keyof RuxIconMoodAttributes]?: RuxIconMood[K] } & { [K in keyof RuxIconMood & keyof RuxIconMoodAttributes as `attr:${K}`]?: RuxIconMoodAttributes[K] } & { [K in keyof RuxIconMood & keyof RuxIconMoodAttributes as `prop:${K}`]?: RuxIconMood[K] }; "rux-icon-mood-bad": Omit & { [K in keyof RuxIconMoodBad & keyof RuxIconMoodBadAttributes]?: RuxIconMoodBad[K] } & { [K in keyof RuxIconMoodBad & keyof RuxIconMoodBadAttributes as `attr:${K}`]?: RuxIconMoodBadAttributes[K] } & { [K in keyof RuxIconMoodBad & keyof RuxIconMoodBadAttributes as `prop:${K}`]?: RuxIconMoodBad[K] }; "rux-icon-more": Omit & { [K in keyof RuxIconMore & keyof RuxIconMoreAttributes]?: RuxIconMore[K] } & { [K in keyof RuxIconMore & keyof RuxIconMoreAttributes as `attr:${K}`]?: RuxIconMoreAttributes[K] } & { [K in keyof RuxIconMore & keyof RuxIconMoreAttributes as `prop:${K}`]?: RuxIconMore[K] }; "rux-icon-more-horiz": Omit & { [K in keyof RuxIconMoreHoriz & keyof RuxIconMoreHorizAttributes]?: RuxIconMoreHoriz[K] } & { [K in keyof RuxIconMoreHoriz & keyof RuxIconMoreHorizAttributes as `attr:${K}`]?: RuxIconMoreHorizAttributes[K] } & { [K in keyof RuxIconMoreHoriz & keyof RuxIconMoreHorizAttributes as `prop:${K}`]?: RuxIconMoreHoriz[K] }; "rux-icon-more-vert": Omit & { [K in keyof RuxIconMoreVert & keyof RuxIconMoreVertAttributes]?: RuxIconMoreVert[K] } & { [K in keyof RuxIconMoreVert & keyof RuxIconMoreVertAttributes as `attr:${K}`]?: RuxIconMoreVertAttributes[K] } & { [K in keyof RuxIconMoreVert & keyof RuxIconMoreVertAttributes as `prop:${K}`]?: RuxIconMoreVert[K] }; "rux-icon-motorcycle": Omit & { [K in keyof RuxIconMotorcycle & keyof RuxIconMotorcycleAttributes]?: RuxIconMotorcycle[K] } & { [K in keyof RuxIconMotorcycle & keyof RuxIconMotorcycleAttributes as `attr:${K}`]?: RuxIconMotorcycleAttributes[K] } & { [K in keyof RuxIconMotorcycle & keyof RuxIconMotorcycleAttributes as `prop:${K}`]?: RuxIconMotorcycle[K] }; "rux-icon-mouse": Omit & { [K in keyof RuxIconMouse & keyof RuxIconMouseAttributes]?: RuxIconMouse[K] } & { [K in keyof RuxIconMouse & keyof RuxIconMouseAttributes as `attr:${K}`]?: RuxIconMouseAttributes[K] } & { [K in keyof RuxIconMouse & keyof RuxIconMouseAttributes as `prop:${K}`]?: RuxIconMouse[K] }; "rux-icon-move-to-inbox": Omit & { [K in keyof RuxIconMoveToInbox & keyof RuxIconMoveToInboxAttributes]?: RuxIconMoveToInbox[K] } & { [K in keyof RuxIconMoveToInbox & keyof RuxIconMoveToInboxAttributes as `attr:${K}`]?: RuxIconMoveToInboxAttributes[K] } & { [K in keyof RuxIconMoveToInbox & keyof RuxIconMoveToInboxAttributes as `prop:${K}`]?: RuxIconMoveToInbox[K] }; "rux-icon-movie": Omit & { [K in keyof RuxIconMovie & keyof RuxIconMovieAttributes]?: RuxIconMovie[K] } & { [K in keyof RuxIconMovie & keyof RuxIconMovieAttributes as `attr:${K}`]?: RuxIconMovieAttributes[K] } & { [K in keyof RuxIconMovie & keyof RuxIconMovieAttributes as `prop:${K}`]?: RuxIconMovie[K] }; "rux-icon-movie-creation": Omit & { [K in keyof RuxIconMovieCreation & keyof RuxIconMovieCreationAttributes]?: RuxIconMovieCreation[K] } & { [K in keyof RuxIconMovieCreation & keyof RuxIconMovieCreationAttributes as `attr:${K}`]?: RuxIconMovieCreationAttributes[K] } & { [K in keyof RuxIconMovieCreation & keyof RuxIconMovieCreationAttributes as `prop:${K}`]?: RuxIconMovieCreation[K] }; "rux-icon-movie-filter": Omit & { [K in keyof RuxIconMovieFilter & keyof RuxIconMovieFilterAttributes]?: RuxIconMovieFilter[K] } & { [K in keyof RuxIconMovieFilter & keyof RuxIconMovieFilterAttributes as `attr:${K}`]?: RuxIconMovieFilterAttributes[K] } & { [K in keyof RuxIconMovieFilter & keyof RuxIconMovieFilterAttributes as `prop:${K}`]?: RuxIconMovieFilter[K] }; "rux-icon-multiline-chart": Omit & { [K in keyof RuxIconMultilineChart & keyof RuxIconMultilineChartAttributes]?: RuxIconMultilineChart[K] } & { [K in keyof RuxIconMultilineChart & keyof RuxIconMultilineChartAttributes as `attr:${K}`]?: RuxIconMultilineChartAttributes[K] } & { [K in keyof RuxIconMultilineChart & keyof RuxIconMultilineChartAttributes as `prop:${K}`]?: RuxIconMultilineChart[K] }; "rux-icon-music-note": Omit & { [K in keyof RuxIconMusicNote & keyof RuxIconMusicNoteAttributes]?: RuxIconMusicNote[K] } & { [K in keyof RuxIconMusicNote & keyof RuxIconMusicNoteAttributes as `attr:${K}`]?: RuxIconMusicNoteAttributes[K] } & { [K in keyof RuxIconMusicNote & keyof RuxIconMusicNoteAttributes as `prop:${K}`]?: RuxIconMusicNote[K] }; "rux-icon-music-off": Omit & { [K in keyof RuxIconMusicOff & keyof RuxIconMusicOffAttributes]?: RuxIconMusicOff[K] } & { [K in keyof RuxIconMusicOff & keyof RuxIconMusicOffAttributes as `attr:${K}`]?: RuxIconMusicOffAttributes[K] } & { [K in keyof RuxIconMusicOff & keyof RuxIconMusicOffAttributes as `prop:${K}`]?: RuxIconMusicOff[K] }; "rux-icon-music-video": Omit & { [K in keyof RuxIconMusicVideo & keyof RuxIconMusicVideoAttributes]?: RuxIconMusicVideo[K] } & { [K in keyof RuxIconMusicVideo & keyof RuxIconMusicVideoAttributes as `attr:${K}`]?: RuxIconMusicVideoAttributes[K] } & { [K in keyof RuxIconMusicVideo & keyof RuxIconMusicVideoAttributes as `prop:${K}`]?: RuxIconMusicVideo[K] }; "rux-icon-my-location": Omit & { [K in keyof RuxIconMyLocation & keyof RuxIconMyLocationAttributes]?: RuxIconMyLocation[K] } & { [K in keyof RuxIconMyLocation & keyof RuxIconMyLocationAttributes as `attr:${K}`]?: RuxIconMyLocationAttributes[K] } & { [K in keyof RuxIconMyLocation & keyof RuxIconMyLocationAttributes as `prop:${K}`]?: RuxIconMyLocation[K] }; "rux-icon-nature": Omit & { [K in keyof RuxIconNature & keyof RuxIconNatureAttributes]?: RuxIconNature[K] } & { [K in keyof RuxIconNature & keyof RuxIconNatureAttributes as `attr:${K}`]?: RuxIconNatureAttributes[K] } & { [K in keyof RuxIconNature & keyof RuxIconNatureAttributes as `prop:${K}`]?: RuxIconNature[K] }; "rux-icon-nature-people": Omit & { [K in keyof RuxIconNaturePeople & keyof RuxIconNaturePeopleAttributes]?: RuxIconNaturePeople[K] } & { [K in keyof RuxIconNaturePeople & keyof RuxIconNaturePeopleAttributes as `attr:${K}`]?: RuxIconNaturePeopleAttributes[K] } & { [K in keyof RuxIconNaturePeople & keyof RuxIconNaturePeopleAttributes as `prop:${K}`]?: RuxIconNaturePeople[K] }; "rux-icon-navigate-before": Omit & { [K in keyof RuxIconNavigateBefore & keyof RuxIconNavigateBeforeAttributes]?: RuxIconNavigateBefore[K] } & { [K in keyof RuxIconNavigateBefore & keyof RuxIconNavigateBeforeAttributes as `attr:${K}`]?: RuxIconNavigateBeforeAttributes[K] } & { [K in keyof RuxIconNavigateBefore & keyof RuxIconNavigateBeforeAttributes as `prop:${K}`]?: RuxIconNavigateBefore[K] }; "rux-icon-navigate-next": Omit & { [K in keyof RuxIconNavigateNext & keyof RuxIconNavigateNextAttributes]?: RuxIconNavigateNext[K] } & { [K in keyof RuxIconNavigateNext & keyof RuxIconNavigateNextAttributes as `attr:${K}`]?: RuxIconNavigateNextAttributes[K] } & { [K in keyof RuxIconNavigateNext & keyof RuxIconNavigateNextAttributes as `prop:${K}`]?: RuxIconNavigateNext[K] }; "rux-icon-navigation": Omit & { [K in keyof RuxIconNavigation & keyof RuxIconNavigationAttributes]?: RuxIconNavigation[K] } & { [K in keyof RuxIconNavigation & keyof RuxIconNavigationAttributes as `attr:${K}`]?: RuxIconNavigationAttributes[K] } & { [K in keyof RuxIconNavigation & keyof RuxIconNavigationAttributes as `prop:${K}`]?: RuxIconNavigation[K] }; "rux-icon-near-me": Omit & { [K in keyof RuxIconNearMe & keyof RuxIconNearMeAttributes]?: RuxIconNearMe[K] } & { [K in keyof RuxIconNearMe & keyof RuxIconNearMeAttributes as `attr:${K}`]?: RuxIconNearMeAttributes[K] } & { [K in keyof RuxIconNearMe & keyof RuxIconNearMeAttributes as `prop:${K}`]?: RuxIconNearMe[K] }; "rux-icon-netcom": Omit & { [K in keyof RuxIconNetcom & keyof RuxIconNetcomAttributes]?: RuxIconNetcom[K] } & { [K in keyof RuxIconNetcom & keyof RuxIconNetcomAttributes as `attr:${K}`]?: RuxIconNetcomAttributes[K] } & { [K in keyof RuxIconNetcom & keyof RuxIconNetcomAttributes as `prop:${K}`]?: RuxIconNetcom[K] }; "rux-icon-network-cell": Omit & { [K in keyof RuxIconNetworkCell & keyof RuxIconNetworkCellAttributes]?: RuxIconNetworkCell[K] } & { [K in keyof RuxIconNetworkCell & keyof RuxIconNetworkCellAttributes as `attr:${K}`]?: RuxIconNetworkCellAttributes[K] } & { [K in keyof RuxIconNetworkCell & keyof RuxIconNetworkCellAttributes as `prop:${K}`]?: RuxIconNetworkCell[K] }; "rux-icon-network-check": Omit & { [K in keyof RuxIconNetworkCheck & keyof RuxIconNetworkCheckAttributes]?: RuxIconNetworkCheck[K] } & { [K in keyof RuxIconNetworkCheck & keyof RuxIconNetworkCheckAttributes as `attr:${K}`]?: RuxIconNetworkCheckAttributes[K] } & { [K in keyof RuxIconNetworkCheck & keyof RuxIconNetworkCheckAttributes as `prop:${K}`]?: RuxIconNetworkCheck[K] }; "rux-icon-network-locked": Omit & { [K in keyof RuxIconNetworkLocked & keyof RuxIconNetworkLockedAttributes]?: RuxIconNetworkLocked[K] } & { [K in keyof RuxIconNetworkLocked & keyof RuxIconNetworkLockedAttributes as `attr:${K}`]?: RuxIconNetworkLockedAttributes[K] } & { [K in keyof RuxIconNetworkLocked & keyof RuxIconNetworkLockedAttributes as `prop:${K}`]?: RuxIconNetworkLocked[K] }; "rux-icon-network-wifi": Omit & { [K in keyof RuxIconNetworkWifi & keyof RuxIconNetworkWifiAttributes]?: RuxIconNetworkWifi[K] } & { [K in keyof RuxIconNetworkWifi & keyof RuxIconNetworkWifiAttributes as `attr:${K}`]?: RuxIconNetworkWifiAttributes[K] } & { [K in keyof RuxIconNetworkWifi & keyof RuxIconNetworkWifiAttributes as `prop:${K}`]?: RuxIconNetworkWifi[K] }; "rux-icon-new-releases": Omit & { [K in keyof RuxIconNewReleases & keyof RuxIconNewReleasesAttributes]?: RuxIconNewReleases[K] } & { [K in keyof RuxIconNewReleases & keyof RuxIconNewReleasesAttributes as `attr:${K}`]?: RuxIconNewReleasesAttributes[K] } & { [K in keyof RuxIconNewReleases & keyof RuxIconNewReleasesAttributes as `prop:${K}`]?: RuxIconNewReleases[K] }; "rux-icon-next-week": Omit & { [K in keyof RuxIconNextWeek & keyof RuxIconNextWeekAttributes]?: RuxIconNextWeek[K] } & { [K in keyof RuxIconNextWeek & keyof RuxIconNextWeekAttributes as `attr:${K}`]?: RuxIconNextWeekAttributes[K] } & { [K in keyof RuxIconNextWeek & keyof RuxIconNextWeekAttributes as `prop:${K}`]?: RuxIconNextWeek[K] }; "rux-icon-nfc": Omit & { [K in keyof RuxIconNfc & keyof RuxIconNfcAttributes]?: RuxIconNfc[K] } & { [K in keyof RuxIconNfc & keyof RuxIconNfcAttributes as `attr:${K}`]?: RuxIconNfcAttributes[K] } & { [K in keyof RuxIconNfc & keyof RuxIconNfcAttributes as `prop:${K}`]?: RuxIconNfc[K] }; "rux-icon-no-encryption": Omit & { [K in keyof RuxIconNoEncryption & keyof RuxIconNoEncryptionAttributes]?: RuxIconNoEncryption[K] } & { [K in keyof RuxIconNoEncryption & keyof RuxIconNoEncryptionAttributes as `attr:${K}`]?: RuxIconNoEncryptionAttributes[K] } & { [K in keyof RuxIconNoEncryption & keyof RuxIconNoEncryptionAttributes as `prop:${K}`]?: RuxIconNoEncryption[K] }; "rux-icon-no-meeting-room": Omit & { [K in keyof RuxIconNoMeetingRoom & keyof RuxIconNoMeetingRoomAttributes]?: RuxIconNoMeetingRoom[K] } & { [K in keyof RuxIconNoMeetingRoom & keyof RuxIconNoMeetingRoomAttributes as `attr:${K}`]?: RuxIconNoMeetingRoomAttributes[K] } & { [K in keyof RuxIconNoMeetingRoom & keyof RuxIconNoMeetingRoomAttributes as `prop:${K}`]?: RuxIconNoMeetingRoom[K] }; "rux-icon-no-sim": Omit & { [K in keyof RuxIconNoSim & keyof RuxIconNoSimAttributes]?: RuxIconNoSim[K] } & { [K in keyof RuxIconNoSim & keyof RuxIconNoSimAttributes as `attr:${K}`]?: RuxIconNoSimAttributes[K] } & { [K in keyof RuxIconNoSim & keyof RuxIconNoSimAttributes as `prop:${K}`]?: RuxIconNoSim[K] }; "rux-icon-not-interested": Omit & { [K in keyof RuxIconNotInterested & keyof RuxIconNotInterestedAttributes]?: RuxIconNotInterested[K] } & { [K in keyof RuxIconNotInterested & keyof RuxIconNotInterestedAttributes as `attr:${K}`]?: RuxIconNotInterestedAttributes[K] } & { [K in keyof RuxIconNotInterested & keyof RuxIconNotInterestedAttributes as `prop:${K}`]?: RuxIconNotInterested[K] }; "rux-icon-not-listed-location": Omit & { [K in keyof RuxIconNotListedLocation & keyof RuxIconNotListedLocationAttributes]?: RuxIconNotListedLocation[K] } & { [K in keyof RuxIconNotListedLocation & keyof RuxIconNotListedLocationAttributes as `attr:${K}`]?: RuxIconNotListedLocationAttributes[K] } & { [K in keyof RuxIconNotListedLocation & keyof RuxIconNotListedLocationAttributes as `prop:${K}`]?: RuxIconNotListedLocation[K] }; "rux-icon-note": Omit & { [K in keyof RuxIconNote & keyof RuxIconNoteAttributes]?: RuxIconNote[K] } & { [K in keyof RuxIconNote & keyof RuxIconNoteAttributes as `attr:${K}`]?: RuxIconNoteAttributes[K] } & { [K in keyof RuxIconNote & keyof RuxIconNoteAttributes as `prop:${K}`]?: RuxIconNote[K] }; "rux-icon-note-add": Omit & { [K in keyof RuxIconNoteAdd & keyof RuxIconNoteAddAttributes]?: RuxIconNoteAdd[K] } & { [K in keyof RuxIconNoteAdd & keyof RuxIconNoteAddAttributes as `attr:${K}`]?: RuxIconNoteAddAttributes[K] } & { [K in keyof RuxIconNoteAdd & keyof RuxIconNoteAddAttributes as `prop:${K}`]?: RuxIconNoteAdd[K] }; "rux-icon-notes": Omit & { [K in keyof RuxIconNotes & keyof RuxIconNotesAttributes]?: RuxIconNotes[K] } & { [K in keyof RuxIconNotes & keyof RuxIconNotesAttributes as `attr:${K}`]?: RuxIconNotesAttributes[K] } & { [K in keyof RuxIconNotes & keyof RuxIconNotesAttributes as `prop:${K}`]?: RuxIconNotes[K] }; "rux-icon-notification-important": Omit & { [K in keyof RuxIconNotificationImportant & keyof RuxIconNotificationImportantAttributes]?: RuxIconNotificationImportant[K] } & { [K in keyof RuxIconNotificationImportant & keyof RuxIconNotificationImportantAttributes as `attr:${K}`]?: RuxIconNotificationImportantAttributes[K] } & { [K in keyof RuxIconNotificationImportant & keyof RuxIconNotificationImportantAttributes as `prop:${K}`]?: RuxIconNotificationImportant[K] }; "rux-icon-notifications": Omit & { [K in keyof RuxIconNotifications & keyof RuxIconNotificationsAttributes]?: RuxIconNotifications[K] } & { [K in keyof RuxIconNotifications & keyof RuxIconNotificationsAttributes as `attr:${K}`]?: RuxIconNotificationsAttributes[K] } & { [K in keyof RuxIconNotifications & keyof RuxIconNotificationsAttributes as `prop:${K}`]?: RuxIconNotifications[K] }; "rux-icon-notifications-active": Omit & { [K in keyof RuxIconNotificationsActive & keyof RuxIconNotificationsActiveAttributes]?: RuxIconNotificationsActive[K] } & { [K in keyof RuxIconNotificationsActive & keyof RuxIconNotificationsActiveAttributes as `attr:${K}`]?: RuxIconNotificationsActiveAttributes[K] } & { [K in keyof RuxIconNotificationsActive & keyof RuxIconNotificationsActiveAttributes as `prop:${K}`]?: RuxIconNotificationsActive[K] }; "rux-icon-notifications-none": Omit & { [K in keyof RuxIconNotificationsNone & keyof RuxIconNotificationsNoneAttributes]?: RuxIconNotificationsNone[K] } & { [K in keyof RuxIconNotificationsNone & keyof RuxIconNotificationsNoneAttributes as `attr:${K}`]?: RuxIconNotificationsNoneAttributes[K] } & { [K in keyof RuxIconNotificationsNone & keyof RuxIconNotificationsNoneAttributes as `prop:${K}`]?: RuxIconNotificationsNone[K] }; "rux-icon-notifications-off": Omit & { [K in keyof RuxIconNotificationsOff & keyof RuxIconNotificationsOffAttributes]?: RuxIconNotificationsOff[K] } & { [K in keyof RuxIconNotificationsOff & keyof RuxIconNotificationsOffAttributes as `attr:${K}`]?: RuxIconNotificationsOffAttributes[K] } & { [K in keyof RuxIconNotificationsOff & keyof RuxIconNotificationsOffAttributes as `prop:${K}`]?: RuxIconNotificationsOff[K] }; "rux-icon-notifications-paused": Omit & { [K in keyof RuxIconNotificationsPaused & keyof RuxIconNotificationsPausedAttributes]?: RuxIconNotificationsPaused[K] } & { [K in keyof RuxIconNotificationsPaused & keyof RuxIconNotificationsPausedAttributes as `attr:${K}`]?: RuxIconNotificationsPausedAttributes[K] } & { [K in keyof RuxIconNotificationsPaused & keyof RuxIconNotificationsPausedAttributes as `prop:${K}`]?: RuxIconNotificationsPaused[K] }; "rux-icon-offline-bolt": Omit & { [K in keyof RuxIconOfflineBolt & keyof RuxIconOfflineBoltAttributes]?: RuxIconOfflineBolt[K] } & { [K in keyof RuxIconOfflineBolt & keyof RuxIconOfflineBoltAttributes as `attr:${K}`]?: RuxIconOfflineBoltAttributes[K] } & { [K in keyof RuxIconOfflineBolt & keyof RuxIconOfflineBoltAttributes as `prop:${K}`]?: RuxIconOfflineBolt[K] }; "rux-icon-offline-pin": Omit & { [K in keyof RuxIconOfflinePin & keyof RuxIconOfflinePinAttributes]?: RuxIconOfflinePin[K] } & { [K in keyof RuxIconOfflinePin & keyof RuxIconOfflinePinAttributes as `attr:${K}`]?: RuxIconOfflinePinAttributes[K] } & { [K in keyof RuxIconOfflinePin & keyof RuxIconOfflinePinAttributes as `prop:${K}`]?: RuxIconOfflinePin[K] }; "rux-icon-ondemand-video": Omit & { [K in keyof RuxIconOndemandVideo & keyof RuxIconOndemandVideoAttributes]?: RuxIconOndemandVideo[K] } & { [K in keyof RuxIconOndemandVideo & keyof RuxIconOndemandVideoAttributes as `attr:${K}`]?: RuxIconOndemandVideoAttributes[K] } & { [K in keyof RuxIconOndemandVideo & keyof RuxIconOndemandVideoAttributes as `prop:${K}`]?: RuxIconOndemandVideo[K] }; "rux-icon-opacity": Omit & { [K in keyof RuxIconOpacity & keyof RuxIconOpacityAttributes]?: RuxIconOpacity[K] } & { [K in keyof RuxIconOpacity & keyof RuxIconOpacityAttributes as `attr:${K}`]?: RuxIconOpacityAttributes[K] } & { [K in keyof RuxIconOpacity & keyof RuxIconOpacityAttributes as `prop:${K}`]?: RuxIconOpacity[K] }; "rux-icon-open-in-browser": Omit & { [K in keyof RuxIconOpenInBrowser & keyof RuxIconOpenInBrowserAttributes]?: RuxIconOpenInBrowser[K] } & { [K in keyof RuxIconOpenInBrowser & keyof RuxIconOpenInBrowserAttributes as `attr:${K}`]?: RuxIconOpenInBrowserAttributes[K] } & { [K in keyof RuxIconOpenInBrowser & keyof RuxIconOpenInBrowserAttributes as `prop:${K}`]?: RuxIconOpenInBrowser[K] }; "rux-icon-open-in-new": Omit & { [K in keyof RuxIconOpenInNew & keyof RuxIconOpenInNewAttributes]?: RuxIconOpenInNew[K] } & { [K in keyof RuxIconOpenInNew & keyof RuxIconOpenInNewAttributes as `attr:${K}`]?: RuxIconOpenInNewAttributes[K] } & { [K in keyof RuxIconOpenInNew & keyof RuxIconOpenInNewAttributes as `prop:${K}`]?: RuxIconOpenInNew[K] }; "rux-icon-open-with": Omit & { [K in keyof RuxIconOpenWith & keyof RuxIconOpenWithAttributes]?: RuxIconOpenWith[K] } & { [K in keyof RuxIconOpenWith & keyof RuxIconOpenWithAttributes as `attr:${K}`]?: RuxIconOpenWithAttributes[K] } & { [K in keyof RuxIconOpenWith & keyof RuxIconOpenWithAttributes as `prop:${K}`]?: RuxIconOpenWith[K] }; "rux-icon-outlined-flag": Omit & { [K in keyof RuxIconOutlinedFlag & keyof RuxIconOutlinedFlagAttributes]?: RuxIconOutlinedFlag[K] } & { [K in keyof RuxIconOutlinedFlag & keyof RuxIconOutlinedFlagAttributes as `attr:${K}`]?: RuxIconOutlinedFlagAttributes[K] } & { [K in keyof RuxIconOutlinedFlag & keyof RuxIconOutlinedFlagAttributes as `prop:${K}`]?: RuxIconOutlinedFlag[K] }; "rux-icon-pages": Omit & { [K in keyof RuxIconPages & keyof RuxIconPagesAttributes]?: RuxIconPages[K] } & { [K in keyof RuxIconPages & keyof RuxIconPagesAttributes as `attr:${K}`]?: RuxIconPagesAttributes[K] } & { [K in keyof RuxIconPages & keyof RuxIconPagesAttributes as `prop:${K}`]?: RuxIconPages[K] }; "rux-icon-pageview": Omit & { [K in keyof RuxIconPageview & keyof RuxIconPageviewAttributes]?: RuxIconPageview[K] } & { [K in keyof RuxIconPageview & keyof RuxIconPageviewAttributes as `attr:${K}`]?: RuxIconPageviewAttributes[K] } & { [K in keyof RuxIconPageview & keyof RuxIconPageviewAttributes as `prop:${K}`]?: RuxIconPageview[K] }; "rux-icon-palette": Omit & { [K in keyof RuxIconPalette & keyof RuxIconPaletteAttributes]?: RuxIconPalette[K] } & { [K in keyof RuxIconPalette & keyof RuxIconPaletteAttributes as `attr:${K}`]?: RuxIconPaletteAttributes[K] } & { [K in keyof RuxIconPalette & keyof RuxIconPaletteAttributes as `prop:${K}`]?: RuxIconPalette[K] }; "rux-icon-pan-tool": Omit & { [K in keyof RuxIconPanTool & keyof RuxIconPanToolAttributes]?: RuxIconPanTool[K] } & { [K in keyof RuxIconPanTool & keyof RuxIconPanToolAttributes as `attr:${K}`]?: RuxIconPanToolAttributes[K] } & { [K in keyof RuxIconPanTool & keyof RuxIconPanToolAttributes as `prop:${K}`]?: RuxIconPanTool[K] }; "rux-icon-panorama": Omit & { [K in keyof RuxIconPanorama & keyof RuxIconPanoramaAttributes]?: RuxIconPanorama[K] } & { [K in keyof RuxIconPanorama & keyof RuxIconPanoramaAttributes as `attr:${K}`]?: RuxIconPanoramaAttributes[K] } & { [K in keyof RuxIconPanorama & keyof RuxIconPanoramaAttributes as `prop:${K}`]?: RuxIconPanorama[K] }; "rux-icon-panorama-fish-eye": Omit & { [K in keyof RuxIconPanoramaFishEye & keyof RuxIconPanoramaFishEyeAttributes]?: RuxIconPanoramaFishEye[K] } & { [K in keyof RuxIconPanoramaFishEye & keyof RuxIconPanoramaFishEyeAttributes as `attr:${K}`]?: RuxIconPanoramaFishEyeAttributes[K] } & { [K in keyof RuxIconPanoramaFishEye & keyof RuxIconPanoramaFishEyeAttributes as `prop:${K}`]?: RuxIconPanoramaFishEye[K] }; "rux-icon-panorama-horizontal": Omit & { [K in keyof RuxIconPanoramaHorizontal & keyof RuxIconPanoramaHorizontalAttributes]?: RuxIconPanoramaHorizontal[K] } & { [K in keyof RuxIconPanoramaHorizontal & keyof RuxIconPanoramaHorizontalAttributes as `attr:${K}`]?: RuxIconPanoramaHorizontalAttributes[K] } & { [K in keyof RuxIconPanoramaHorizontal & keyof RuxIconPanoramaHorizontalAttributes as `prop:${K}`]?: RuxIconPanoramaHorizontal[K] }; "rux-icon-panorama-vertical": Omit & { [K in keyof RuxIconPanoramaVertical & keyof RuxIconPanoramaVerticalAttributes]?: RuxIconPanoramaVertical[K] } & { [K in keyof RuxIconPanoramaVertical & keyof RuxIconPanoramaVerticalAttributes as `attr:${K}`]?: RuxIconPanoramaVerticalAttributes[K] } & { [K in keyof RuxIconPanoramaVertical & keyof RuxIconPanoramaVerticalAttributes as `prop:${K}`]?: RuxIconPanoramaVertical[K] }; "rux-icon-panorama-wide-angle": Omit & { [K in keyof RuxIconPanoramaWideAngle & keyof RuxIconPanoramaWideAngleAttributes]?: RuxIconPanoramaWideAngle[K] } & { [K in keyof RuxIconPanoramaWideAngle & keyof RuxIconPanoramaWideAngleAttributes as `attr:${K}`]?: RuxIconPanoramaWideAngleAttributes[K] } & { [K in keyof RuxIconPanoramaWideAngle & keyof RuxIconPanoramaWideAngleAttributes as `prop:${K}`]?: RuxIconPanoramaWideAngle[K] }; "rux-icon-party-mode": Omit & { [K in keyof RuxIconPartyMode & keyof RuxIconPartyModeAttributes]?: RuxIconPartyMode[K] } & { [K in keyof RuxIconPartyMode & keyof RuxIconPartyModeAttributes as `attr:${K}`]?: RuxIconPartyModeAttributes[K] } & { [K in keyof RuxIconPartyMode & keyof RuxIconPartyModeAttributes as `prop:${K}`]?: RuxIconPartyMode[K] }; "rux-icon-pause": Omit & { [K in keyof RuxIconPause & keyof RuxIconPauseAttributes]?: RuxIconPause[K] } & { [K in keyof RuxIconPause & keyof RuxIconPauseAttributes as `attr:${K}`]?: RuxIconPauseAttributes[K] } & { [K in keyof RuxIconPause & keyof RuxIconPauseAttributes as `prop:${K}`]?: RuxIconPause[K] }; "rux-icon-pause-circle-filled": Omit & { [K in keyof RuxIconPauseCircleFilled & keyof RuxIconPauseCircleFilledAttributes]?: RuxIconPauseCircleFilled[K] } & { [K in keyof RuxIconPauseCircleFilled & keyof RuxIconPauseCircleFilledAttributes as `attr:${K}`]?: RuxIconPauseCircleFilledAttributes[K] } & { [K in keyof RuxIconPauseCircleFilled & keyof RuxIconPauseCircleFilledAttributes as `prop:${K}`]?: RuxIconPauseCircleFilled[K] }; "rux-icon-pause-circle-outline": Omit & { [K in keyof RuxIconPauseCircleOutline & keyof RuxIconPauseCircleOutlineAttributes]?: RuxIconPauseCircleOutline[K] } & { [K in keyof RuxIconPauseCircleOutline & keyof RuxIconPauseCircleOutlineAttributes as `attr:${K}`]?: RuxIconPauseCircleOutlineAttributes[K] } & { [K in keyof RuxIconPauseCircleOutline & keyof RuxIconPauseCircleOutlineAttributes as `prop:${K}`]?: RuxIconPauseCircleOutline[K] }; "rux-icon-pause-presentation": Omit & { [K in keyof RuxIconPausePresentation & keyof RuxIconPausePresentationAttributes]?: RuxIconPausePresentation[K] } & { [K in keyof RuxIconPausePresentation & keyof RuxIconPausePresentationAttributes as `attr:${K}`]?: RuxIconPausePresentationAttributes[K] } & { [K in keyof RuxIconPausePresentation & keyof RuxIconPausePresentationAttributes as `prop:${K}`]?: RuxIconPausePresentation[K] }; "rux-icon-payload": Omit & { [K in keyof RuxIconPayload & keyof RuxIconPayloadAttributes]?: RuxIconPayload[K] } & { [K in keyof RuxIconPayload & keyof RuxIconPayloadAttributes as `attr:${K}`]?: RuxIconPayloadAttributes[K] } & { [K in keyof RuxIconPayload & keyof RuxIconPayloadAttributes as `prop:${K}`]?: RuxIconPayload[K] }; "rux-icon-payment": Omit & { [K in keyof RuxIconPayment & keyof RuxIconPaymentAttributes]?: RuxIconPayment[K] } & { [K in keyof RuxIconPayment & keyof RuxIconPaymentAttributes as `attr:${K}`]?: RuxIconPaymentAttributes[K] } & { [K in keyof RuxIconPayment & keyof RuxIconPaymentAttributes as `prop:${K}`]?: RuxIconPayment[K] }; "rux-icon-people-outline": Omit & { [K in keyof RuxIconPeopleOutline & keyof RuxIconPeopleOutlineAttributes]?: RuxIconPeopleOutline[K] } & { [K in keyof RuxIconPeopleOutline & keyof RuxIconPeopleOutlineAttributes as `attr:${K}`]?: RuxIconPeopleOutlineAttributes[K] } & { [K in keyof RuxIconPeopleOutline & keyof RuxIconPeopleOutlineAttributes as `prop:${K}`]?: RuxIconPeopleOutline[K] }; "rux-icon-perm-camera-mic": Omit & { [K in keyof RuxIconPermCameraMic & keyof RuxIconPermCameraMicAttributes]?: RuxIconPermCameraMic[K] } & { [K in keyof RuxIconPermCameraMic & keyof RuxIconPermCameraMicAttributes as `attr:${K}`]?: RuxIconPermCameraMicAttributes[K] } & { [K in keyof RuxIconPermCameraMic & keyof RuxIconPermCameraMicAttributes as `prop:${K}`]?: RuxIconPermCameraMic[K] }; "rux-icon-perm-contact-calendar": Omit & { [K in keyof RuxIconPermContactCalendar & keyof RuxIconPermContactCalendarAttributes]?: RuxIconPermContactCalendar[K] } & { [K in keyof RuxIconPermContactCalendar & keyof RuxIconPermContactCalendarAttributes as `attr:${K}`]?: RuxIconPermContactCalendarAttributes[K] } & { [K in keyof RuxIconPermContactCalendar & keyof RuxIconPermContactCalendarAttributes as `prop:${K}`]?: RuxIconPermContactCalendar[K] }; "rux-icon-perm-data-setting": Omit & { [K in keyof RuxIconPermDataSetting & keyof RuxIconPermDataSettingAttributes]?: RuxIconPermDataSetting[K] } & { [K in keyof RuxIconPermDataSetting & keyof RuxIconPermDataSettingAttributes as `attr:${K}`]?: RuxIconPermDataSettingAttributes[K] } & { [K in keyof RuxIconPermDataSetting & keyof RuxIconPermDataSettingAttributes as `prop:${K}`]?: RuxIconPermDataSetting[K] }; "rux-icon-perm-device-information": Omit & { [K in keyof RuxIconPermDeviceInformation & keyof RuxIconPermDeviceInformationAttributes]?: RuxIconPermDeviceInformation[K] } & { [K in keyof RuxIconPermDeviceInformation & keyof RuxIconPermDeviceInformationAttributes as `attr:${K}`]?: RuxIconPermDeviceInformationAttributes[K] } & { [K in keyof RuxIconPermDeviceInformation & keyof RuxIconPermDeviceInformationAttributes as `prop:${K}`]?: RuxIconPermDeviceInformation[K] }; "rux-icon-perm-identity": Omit & { [K in keyof RuxIconPermIdentity & keyof RuxIconPermIdentityAttributes]?: RuxIconPermIdentity[K] } & { [K in keyof RuxIconPermIdentity & keyof RuxIconPermIdentityAttributes as `attr:${K}`]?: RuxIconPermIdentityAttributes[K] } & { [K in keyof RuxIconPermIdentity & keyof RuxIconPermIdentityAttributes as `prop:${K}`]?: RuxIconPermIdentity[K] }; "rux-icon-perm-media": Omit & { [K in keyof RuxIconPermMedia & keyof RuxIconPermMediaAttributes]?: RuxIconPermMedia[K] } & { [K in keyof RuxIconPermMedia & keyof RuxIconPermMediaAttributes as `attr:${K}`]?: RuxIconPermMediaAttributes[K] } & { [K in keyof RuxIconPermMedia & keyof RuxIconPermMediaAttributes as `prop:${K}`]?: RuxIconPermMedia[K] }; "rux-icon-perm-phone-msg": Omit & { [K in keyof RuxIconPermPhoneMsg & keyof RuxIconPermPhoneMsgAttributes]?: RuxIconPermPhoneMsg[K] } & { [K in keyof RuxIconPermPhoneMsg & keyof RuxIconPermPhoneMsgAttributes as `attr:${K}`]?: RuxIconPermPhoneMsgAttributes[K] } & { [K in keyof RuxIconPermPhoneMsg & keyof RuxIconPermPhoneMsgAttributes as `prop:${K}`]?: RuxIconPermPhoneMsg[K] }; "rux-icon-perm-scan-wifi": Omit & { [K in keyof RuxIconPermScanWifi & keyof RuxIconPermScanWifiAttributes]?: RuxIconPermScanWifi[K] } & { [K in keyof RuxIconPermScanWifi & keyof RuxIconPermScanWifiAttributes as `attr:${K}`]?: RuxIconPermScanWifiAttributes[K] } & { [K in keyof RuxIconPermScanWifi & keyof RuxIconPermScanWifiAttributes as `prop:${K}`]?: RuxIconPermScanWifi[K] }; "rux-icon-person": Omit & { [K in keyof RuxIconPerson & keyof RuxIconPersonAttributes]?: RuxIconPerson[K] } & { [K in keyof RuxIconPerson & keyof RuxIconPersonAttributes as `attr:${K}`]?: RuxIconPersonAttributes[K] } & { [K in keyof RuxIconPerson & keyof RuxIconPersonAttributes as `prop:${K}`]?: RuxIconPerson[K] }; "rux-icon-person-add": Omit & { [K in keyof RuxIconPersonAdd & keyof RuxIconPersonAddAttributes]?: RuxIconPersonAdd[K] } & { [K in keyof RuxIconPersonAdd & keyof RuxIconPersonAddAttributes as `attr:${K}`]?: RuxIconPersonAddAttributes[K] } & { [K in keyof RuxIconPersonAdd & keyof RuxIconPersonAddAttributes as `prop:${K}`]?: RuxIconPersonAdd[K] }; "rux-icon-person-add-disabled": Omit & { [K in keyof RuxIconPersonAddDisabled & keyof RuxIconPersonAddDisabledAttributes]?: RuxIconPersonAddDisabled[K] } & { [K in keyof RuxIconPersonAddDisabled & keyof RuxIconPersonAddDisabledAttributes as `attr:${K}`]?: RuxIconPersonAddDisabledAttributes[K] } & { [K in keyof RuxIconPersonAddDisabled & keyof RuxIconPersonAddDisabledAttributes as `prop:${K}`]?: RuxIconPersonAddDisabled[K] }; "rux-icon-person-outline": Omit & { [K in keyof RuxIconPersonOutline & keyof RuxIconPersonOutlineAttributes]?: RuxIconPersonOutline[K] } & { [K in keyof RuxIconPersonOutline & keyof RuxIconPersonOutlineAttributes as `attr:${K}`]?: RuxIconPersonOutlineAttributes[K] } & { [K in keyof RuxIconPersonOutline & keyof RuxIconPersonOutlineAttributes as `prop:${K}`]?: RuxIconPersonOutline[K] }; "rux-icon-person-pin": Omit & { [K in keyof RuxIconPersonPin & keyof RuxIconPersonPinAttributes]?: RuxIconPersonPin[K] } & { [K in keyof RuxIconPersonPin & keyof RuxIconPersonPinAttributes as `attr:${K}`]?: RuxIconPersonPinAttributes[K] } & { [K in keyof RuxIconPersonPin & keyof RuxIconPersonPinAttributes as `prop:${K}`]?: RuxIconPersonPin[K] }; "rux-icon-person-pin-circle": Omit & { [K in keyof RuxIconPersonPinCircle & keyof RuxIconPersonPinCircleAttributes]?: RuxIconPersonPinCircle[K] } & { [K in keyof RuxIconPersonPinCircle & keyof RuxIconPersonPinCircleAttributes as `attr:${K}`]?: RuxIconPersonPinCircleAttributes[K] } & { [K in keyof RuxIconPersonPinCircle & keyof RuxIconPersonPinCircleAttributes as `prop:${K}`]?: RuxIconPersonPinCircle[K] }; "rux-icon-personal-video": Omit & { [K in keyof RuxIconPersonalVideo & keyof RuxIconPersonalVideoAttributes]?: RuxIconPersonalVideo[K] } & { [K in keyof RuxIconPersonalVideo & keyof RuxIconPersonalVideoAttributes as `attr:${K}`]?: RuxIconPersonalVideoAttributes[K] } & { [K in keyof RuxIconPersonalVideo & keyof RuxIconPersonalVideoAttributes as `prop:${K}`]?: RuxIconPersonalVideo[K] }; "rux-icon-pets": Omit & { [K in keyof RuxIconPets & keyof RuxIconPetsAttributes]?: RuxIconPets[K] } & { [K in keyof RuxIconPets & keyof RuxIconPetsAttributes as `attr:${K}`]?: RuxIconPetsAttributes[K] } & { [K in keyof RuxIconPets & keyof RuxIconPetsAttributes as `prop:${K}`]?: RuxIconPets[K] }; "rux-icon-phone": Omit & { [K in keyof RuxIconPhone & keyof RuxIconPhoneAttributes]?: RuxIconPhone[K] } & { [K in keyof RuxIconPhone & keyof RuxIconPhoneAttributes as `attr:${K}`]?: RuxIconPhoneAttributes[K] } & { [K in keyof RuxIconPhone & keyof RuxIconPhoneAttributes as `prop:${K}`]?: RuxIconPhone[K] }; "rux-icon-phone-android": Omit & { [K in keyof RuxIconPhoneAndroid & keyof RuxIconPhoneAndroidAttributes]?: RuxIconPhoneAndroid[K] } & { [K in keyof RuxIconPhoneAndroid & keyof RuxIconPhoneAndroidAttributes as `attr:${K}`]?: RuxIconPhoneAndroidAttributes[K] } & { [K in keyof RuxIconPhoneAndroid & keyof RuxIconPhoneAndroidAttributes as `prop:${K}`]?: RuxIconPhoneAndroid[K] }; "rux-icon-phone-bluetooth-speaker": Omit & { [K in keyof RuxIconPhoneBluetoothSpeaker & keyof RuxIconPhoneBluetoothSpeakerAttributes]?: RuxIconPhoneBluetoothSpeaker[K] } & { [K in keyof RuxIconPhoneBluetoothSpeaker & keyof RuxIconPhoneBluetoothSpeakerAttributes as `attr:${K}`]?: RuxIconPhoneBluetoothSpeakerAttributes[K] } & { [K in keyof RuxIconPhoneBluetoothSpeaker & keyof RuxIconPhoneBluetoothSpeakerAttributes as `prop:${K}`]?: RuxIconPhoneBluetoothSpeaker[K] }; "rux-icon-phone-callback": Omit & { [K in keyof RuxIconPhoneCallback & keyof RuxIconPhoneCallbackAttributes]?: RuxIconPhoneCallback[K] } & { [K in keyof RuxIconPhoneCallback & keyof RuxIconPhoneCallbackAttributes as `attr:${K}`]?: RuxIconPhoneCallbackAttributes[K] } & { [K in keyof RuxIconPhoneCallback & keyof RuxIconPhoneCallbackAttributes as `prop:${K}`]?: RuxIconPhoneCallback[K] }; "rux-icon-phone-forwarded": Omit & { [K in keyof RuxIconPhoneForwarded & keyof RuxIconPhoneForwardedAttributes]?: RuxIconPhoneForwarded[K] } & { [K in keyof RuxIconPhoneForwarded & keyof RuxIconPhoneForwardedAttributes as `attr:${K}`]?: RuxIconPhoneForwardedAttributes[K] } & { [K in keyof RuxIconPhoneForwarded & keyof RuxIconPhoneForwardedAttributes as `prop:${K}`]?: RuxIconPhoneForwarded[K] }; "rux-icon-phone-in-talk": Omit & { [K in keyof RuxIconPhoneInTalk & keyof RuxIconPhoneInTalkAttributes]?: RuxIconPhoneInTalk[K] } & { [K in keyof RuxIconPhoneInTalk & keyof RuxIconPhoneInTalkAttributes as `attr:${K}`]?: RuxIconPhoneInTalkAttributes[K] } & { [K in keyof RuxIconPhoneInTalk & keyof RuxIconPhoneInTalkAttributes as `prop:${K}`]?: RuxIconPhoneInTalk[K] }; "rux-icon-phone-iphone": Omit & { [K in keyof RuxIconPhoneIphone & keyof RuxIconPhoneIphoneAttributes]?: RuxIconPhoneIphone[K] } & { [K in keyof RuxIconPhoneIphone & keyof RuxIconPhoneIphoneAttributes as `attr:${K}`]?: RuxIconPhoneIphoneAttributes[K] } & { [K in keyof RuxIconPhoneIphone & keyof RuxIconPhoneIphoneAttributes as `prop:${K}`]?: RuxIconPhoneIphone[K] }; "rux-icon-phone-locked": Omit & { [K in keyof RuxIconPhoneLocked & keyof RuxIconPhoneLockedAttributes]?: RuxIconPhoneLocked[K] } & { [K in keyof RuxIconPhoneLocked & keyof RuxIconPhoneLockedAttributes as `attr:${K}`]?: RuxIconPhoneLockedAttributes[K] } & { [K in keyof RuxIconPhoneLocked & keyof RuxIconPhoneLockedAttributes as `prop:${K}`]?: RuxIconPhoneLocked[K] }; "rux-icon-phone-missed": Omit & { [K in keyof RuxIconPhoneMissed & keyof RuxIconPhoneMissedAttributes]?: RuxIconPhoneMissed[K] } & { [K in keyof RuxIconPhoneMissed & keyof RuxIconPhoneMissedAttributes as `attr:${K}`]?: RuxIconPhoneMissedAttributes[K] } & { [K in keyof RuxIconPhoneMissed & keyof RuxIconPhoneMissedAttributes as `prop:${K}`]?: RuxIconPhoneMissed[K] }; "rux-icon-phone-paused": Omit & { [K in keyof RuxIconPhonePaused & keyof RuxIconPhonePausedAttributes]?: RuxIconPhonePaused[K] } & { [K in keyof RuxIconPhonePaused & keyof RuxIconPhonePausedAttributes as `attr:${K}`]?: RuxIconPhonePausedAttributes[K] } & { [K in keyof RuxIconPhonePaused & keyof RuxIconPhonePausedAttributes as `prop:${K}`]?: RuxIconPhonePaused[K] }; "rux-icon-phonelink": Omit & { [K in keyof RuxIconPhonelink & keyof RuxIconPhonelinkAttributes]?: RuxIconPhonelink[K] } & { [K in keyof RuxIconPhonelink & keyof RuxIconPhonelinkAttributes as `attr:${K}`]?: RuxIconPhonelinkAttributes[K] } & { [K in keyof RuxIconPhonelink & keyof RuxIconPhonelinkAttributes as `prop:${K}`]?: RuxIconPhonelink[K] }; "rux-icon-phonelink-erase": Omit & { [K in keyof RuxIconPhonelinkErase & keyof RuxIconPhonelinkEraseAttributes]?: RuxIconPhonelinkErase[K] } & { [K in keyof RuxIconPhonelinkErase & keyof RuxIconPhonelinkEraseAttributes as `attr:${K}`]?: RuxIconPhonelinkEraseAttributes[K] } & { [K in keyof RuxIconPhonelinkErase & keyof RuxIconPhonelinkEraseAttributes as `prop:${K}`]?: RuxIconPhonelinkErase[K] }; "rux-icon-phonelink-lock": Omit & { [K in keyof RuxIconPhonelinkLock & keyof RuxIconPhonelinkLockAttributes]?: RuxIconPhonelinkLock[K] } & { [K in keyof RuxIconPhonelinkLock & keyof RuxIconPhonelinkLockAttributes as `attr:${K}`]?: RuxIconPhonelinkLockAttributes[K] } & { [K in keyof RuxIconPhonelinkLock & keyof RuxIconPhonelinkLockAttributes as `prop:${K}`]?: RuxIconPhonelinkLock[K] }; "rux-icon-phonelink-off": Omit & { [K in keyof RuxIconPhonelinkOff & keyof RuxIconPhonelinkOffAttributes]?: RuxIconPhonelinkOff[K] } & { [K in keyof RuxIconPhonelinkOff & keyof RuxIconPhonelinkOffAttributes as `attr:${K}`]?: RuxIconPhonelinkOffAttributes[K] } & { [K in keyof RuxIconPhonelinkOff & keyof RuxIconPhonelinkOffAttributes as `prop:${K}`]?: RuxIconPhonelinkOff[K] }; "rux-icon-phonelink-ring": Omit & { [K in keyof RuxIconPhonelinkRing & keyof RuxIconPhonelinkRingAttributes]?: RuxIconPhonelinkRing[K] } & { [K in keyof RuxIconPhonelinkRing & keyof RuxIconPhonelinkRingAttributes as `attr:${K}`]?: RuxIconPhonelinkRingAttributes[K] } & { [K in keyof RuxIconPhonelinkRing & keyof RuxIconPhonelinkRingAttributes as `prop:${K}`]?: RuxIconPhonelinkRing[K] }; "rux-icon-phonelink-setup": Omit & { [K in keyof RuxIconPhonelinkSetup & keyof RuxIconPhonelinkSetupAttributes]?: RuxIconPhonelinkSetup[K] } & { [K in keyof RuxIconPhonelinkSetup & keyof RuxIconPhonelinkSetupAttributes as `attr:${K}`]?: RuxIconPhonelinkSetupAttributes[K] } & { [K in keyof RuxIconPhonelinkSetup & keyof RuxIconPhonelinkSetupAttributes as `prop:${K}`]?: RuxIconPhonelinkSetup[K] }; "rux-icon-photo": Omit & { [K in keyof RuxIconPhoto & keyof RuxIconPhotoAttributes]?: RuxIconPhoto[K] } & { [K in keyof RuxIconPhoto & keyof RuxIconPhotoAttributes as `attr:${K}`]?: RuxIconPhotoAttributes[K] } & { [K in keyof RuxIconPhoto & keyof RuxIconPhotoAttributes as `prop:${K}`]?: RuxIconPhoto[K] }; "rux-icon-photo-album": Omit & { [K in keyof RuxIconPhotoAlbum & keyof RuxIconPhotoAlbumAttributes]?: RuxIconPhotoAlbum[K] } & { [K in keyof RuxIconPhotoAlbum & keyof RuxIconPhotoAlbumAttributes as `attr:${K}`]?: RuxIconPhotoAlbumAttributes[K] } & { [K in keyof RuxIconPhotoAlbum & keyof RuxIconPhotoAlbumAttributes as `prop:${K}`]?: RuxIconPhotoAlbum[K] }; "rux-icon-photo-camera": Omit & { [K in keyof RuxIconPhotoCamera & keyof RuxIconPhotoCameraAttributes]?: RuxIconPhotoCamera[K] } & { [K in keyof RuxIconPhotoCamera & keyof RuxIconPhotoCameraAttributes as `attr:${K}`]?: RuxIconPhotoCameraAttributes[K] } & { [K in keyof RuxIconPhotoCamera & keyof RuxIconPhotoCameraAttributes as `prop:${K}`]?: RuxIconPhotoCamera[K] }; "rux-icon-photo-filter": Omit & { [K in keyof RuxIconPhotoFilter & keyof RuxIconPhotoFilterAttributes]?: RuxIconPhotoFilter[K] } & { [K in keyof RuxIconPhotoFilter & keyof RuxIconPhotoFilterAttributes as `attr:${K}`]?: RuxIconPhotoFilterAttributes[K] } & { [K in keyof RuxIconPhotoFilter & keyof RuxIconPhotoFilterAttributes as `prop:${K}`]?: RuxIconPhotoFilter[K] }; "rux-icon-photo-library": Omit & { [K in keyof RuxIconPhotoLibrary & keyof RuxIconPhotoLibraryAttributes]?: RuxIconPhotoLibrary[K] } & { [K in keyof RuxIconPhotoLibrary & keyof RuxIconPhotoLibraryAttributes as `attr:${K}`]?: RuxIconPhotoLibraryAttributes[K] } & { [K in keyof RuxIconPhotoLibrary & keyof RuxIconPhotoLibraryAttributes as `prop:${K}`]?: RuxIconPhotoLibrary[K] }; "rux-icon-photo-size-select-actual": Omit & { [K in keyof RuxIconPhotoSizeSelectActual & keyof RuxIconPhotoSizeSelectActualAttributes]?: RuxIconPhotoSizeSelectActual[K] } & { [K in keyof RuxIconPhotoSizeSelectActual & keyof RuxIconPhotoSizeSelectActualAttributes as `attr:${K}`]?: RuxIconPhotoSizeSelectActualAttributes[K] } & { [K in keyof RuxIconPhotoSizeSelectActual & keyof RuxIconPhotoSizeSelectActualAttributes as `prop:${K}`]?: RuxIconPhotoSizeSelectActual[K] }; "rux-icon-photo-size-select-large": Omit & { [K in keyof RuxIconPhotoSizeSelectLarge & keyof RuxIconPhotoSizeSelectLargeAttributes]?: RuxIconPhotoSizeSelectLarge[K] } & { [K in keyof RuxIconPhotoSizeSelectLarge & keyof RuxIconPhotoSizeSelectLargeAttributes as `attr:${K}`]?: RuxIconPhotoSizeSelectLargeAttributes[K] } & { [K in keyof RuxIconPhotoSizeSelectLarge & keyof RuxIconPhotoSizeSelectLargeAttributes as `prop:${K}`]?: RuxIconPhotoSizeSelectLarge[K] }; "rux-icon-photo-size-select-small": Omit & { [K in keyof RuxIconPhotoSizeSelectSmall & keyof RuxIconPhotoSizeSelectSmallAttributes]?: RuxIconPhotoSizeSelectSmall[K] } & { [K in keyof RuxIconPhotoSizeSelectSmall & keyof RuxIconPhotoSizeSelectSmallAttributes as `attr:${K}`]?: RuxIconPhotoSizeSelectSmallAttributes[K] } & { [K in keyof RuxIconPhotoSizeSelectSmall & keyof RuxIconPhotoSizeSelectSmallAttributes as `prop:${K}`]?: RuxIconPhotoSizeSelectSmall[K] }; "rux-icon-picture-as-pdf": Omit & { [K in keyof RuxIconPictureAsPdf & keyof RuxIconPictureAsPdfAttributes]?: RuxIconPictureAsPdf[K] } & { [K in keyof RuxIconPictureAsPdf & keyof RuxIconPictureAsPdfAttributes as `attr:${K}`]?: RuxIconPictureAsPdfAttributes[K] } & { [K in keyof RuxIconPictureAsPdf & keyof RuxIconPictureAsPdfAttributes as `prop:${K}`]?: RuxIconPictureAsPdf[K] }; "rux-icon-picture-in-picture": Omit & { [K in keyof RuxIconPictureInPicture & keyof RuxIconPictureInPictureAttributes]?: RuxIconPictureInPicture[K] } & { [K in keyof RuxIconPictureInPicture & keyof RuxIconPictureInPictureAttributes as `attr:${K}`]?: RuxIconPictureInPictureAttributes[K] } & { [K in keyof RuxIconPictureInPicture & keyof RuxIconPictureInPictureAttributes as `prop:${K}`]?: RuxIconPictureInPicture[K] }; "rux-icon-picture-in-picture-alt": Omit & { [K in keyof RuxIconPictureInPictureAlt & keyof RuxIconPictureInPictureAltAttributes]?: RuxIconPictureInPictureAlt[K] } & { [K in keyof RuxIconPictureInPictureAlt & keyof RuxIconPictureInPictureAltAttributes as `attr:${K}`]?: RuxIconPictureInPictureAltAttributes[K] } & { [K in keyof RuxIconPictureInPictureAlt & keyof RuxIconPictureInPictureAltAttributes as `prop:${K}`]?: RuxIconPictureInPictureAlt[K] }; "rux-icon-pie-chart": Omit & { [K in keyof RuxIconPieChart & keyof RuxIconPieChartAttributes]?: RuxIconPieChart[K] } & { [K in keyof RuxIconPieChart & keyof RuxIconPieChartAttributes as `attr:${K}`]?: RuxIconPieChartAttributes[K] } & { [K in keyof RuxIconPieChart & keyof RuxIconPieChartAttributes as `prop:${K}`]?: RuxIconPieChart[K] }; "rux-icon-pin-drop": Omit & { [K in keyof RuxIconPinDrop & keyof RuxIconPinDropAttributes]?: RuxIconPinDrop[K] } & { [K in keyof RuxIconPinDrop & keyof RuxIconPinDropAttributes as `attr:${K}`]?: RuxIconPinDropAttributes[K] } & { [K in keyof RuxIconPinDrop & keyof RuxIconPinDropAttributes as `prop:${K}`]?: RuxIconPinDrop[K] }; "rux-icon-place": Omit & { [K in keyof RuxIconPlace & keyof RuxIconPlaceAttributes]?: RuxIconPlace[K] } & { [K in keyof RuxIconPlace & keyof RuxIconPlaceAttributes as `attr:${K}`]?: RuxIconPlaceAttributes[K] } & { [K in keyof RuxIconPlace & keyof RuxIconPlaceAttributes as `prop:${K}`]?: RuxIconPlace[K] }; "rux-icon-play-arrow": Omit & { [K in keyof RuxIconPlayArrow & keyof RuxIconPlayArrowAttributes]?: RuxIconPlayArrow[K] } & { [K in keyof RuxIconPlayArrow & keyof RuxIconPlayArrowAttributes as `attr:${K}`]?: RuxIconPlayArrowAttributes[K] } & { [K in keyof RuxIconPlayArrow & keyof RuxIconPlayArrowAttributes as `prop:${K}`]?: RuxIconPlayArrow[K] }; "rux-icon-play-circle-filled": Omit & { [K in keyof RuxIconPlayCircleFilled & keyof RuxIconPlayCircleFilledAttributes]?: RuxIconPlayCircleFilled[K] } & { [K in keyof RuxIconPlayCircleFilled & keyof RuxIconPlayCircleFilledAttributes as `attr:${K}`]?: RuxIconPlayCircleFilledAttributes[K] } & { [K in keyof RuxIconPlayCircleFilled & keyof RuxIconPlayCircleFilledAttributes as `prop:${K}`]?: RuxIconPlayCircleFilled[K] }; "rux-icon-play-circle-filled-white": Omit & { [K in keyof RuxIconPlayCircleFilledWhite & keyof RuxIconPlayCircleFilledWhiteAttributes]?: RuxIconPlayCircleFilledWhite[K] } & { [K in keyof RuxIconPlayCircleFilledWhite & keyof RuxIconPlayCircleFilledWhiteAttributes as `attr:${K}`]?: RuxIconPlayCircleFilledWhiteAttributes[K] } & { [K in keyof RuxIconPlayCircleFilledWhite & keyof RuxIconPlayCircleFilledWhiteAttributes as `prop:${K}`]?: RuxIconPlayCircleFilledWhite[K] }; "rux-icon-play-circle-outline": Omit & { [K in keyof RuxIconPlayCircleOutline & keyof RuxIconPlayCircleOutlineAttributes]?: RuxIconPlayCircleOutline[K] } & { [K in keyof RuxIconPlayCircleOutline & keyof RuxIconPlayCircleOutlineAttributes as `attr:${K}`]?: RuxIconPlayCircleOutlineAttributes[K] } & { [K in keyof RuxIconPlayCircleOutline & keyof RuxIconPlayCircleOutlineAttributes as `prop:${K}`]?: RuxIconPlayCircleOutline[K] }; "rux-icon-play-for-work": Omit & { [K in keyof RuxIconPlayForWork & keyof RuxIconPlayForWorkAttributes]?: RuxIconPlayForWork[K] } & { [K in keyof RuxIconPlayForWork & keyof RuxIconPlayForWorkAttributes as `attr:${K}`]?: RuxIconPlayForWorkAttributes[K] } & { [K in keyof RuxIconPlayForWork & keyof RuxIconPlayForWorkAttributes as `prop:${K}`]?: RuxIconPlayForWork[K] }; "rux-icon-playlist-add": Omit & { [K in keyof RuxIconPlaylistAdd & keyof RuxIconPlaylistAddAttributes]?: RuxIconPlaylistAdd[K] } & { [K in keyof RuxIconPlaylistAdd & keyof RuxIconPlaylistAddAttributes as `attr:${K}`]?: RuxIconPlaylistAddAttributes[K] } & { [K in keyof RuxIconPlaylistAdd & keyof RuxIconPlaylistAddAttributes as `prop:${K}`]?: RuxIconPlaylistAdd[K] }; "rux-icon-playlist-add-check": Omit & { [K in keyof RuxIconPlaylistAddCheck & keyof RuxIconPlaylistAddCheckAttributes]?: RuxIconPlaylistAddCheck[K] } & { [K in keyof RuxIconPlaylistAddCheck & keyof RuxIconPlaylistAddCheckAttributes as `attr:${K}`]?: RuxIconPlaylistAddCheckAttributes[K] } & { [K in keyof RuxIconPlaylistAddCheck & keyof RuxIconPlaylistAddCheckAttributes as `prop:${K}`]?: RuxIconPlaylistAddCheck[K] }; "rux-icon-playlist-play": Omit & { [K in keyof RuxIconPlaylistPlay & keyof RuxIconPlaylistPlayAttributes]?: RuxIconPlaylistPlay[K] } & { [K in keyof RuxIconPlaylistPlay & keyof RuxIconPlaylistPlayAttributes as `attr:${K}`]?: RuxIconPlaylistPlayAttributes[K] } & { [K in keyof RuxIconPlaylistPlay & keyof RuxIconPlaylistPlayAttributes as `prop:${K}`]?: RuxIconPlaylistPlay[K] }; "rux-icon-plus-one": Omit & { [K in keyof RuxIconPlusOne & keyof RuxIconPlusOneAttributes]?: RuxIconPlusOne[K] } & { [K in keyof RuxIconPlusOne & keyof RuxIconPlusOneAttributes as `attr:${K}`]?: RuxIconPlusOneAttributes[K] } & { [K in keyof RuxIconPlusOne & keyof RuxIconPlusOneAttributes as `prop:${K}`]?: RuxIconPlusOne[K] }; "rux-icon-poll": Omit & { [K in keyof RuxIconPoll & keyof RuxIconPollAttributes]?: RuxIconPoll[K] } & { [K in keyof RuxIconPoll & keyof RuxIconPollAttributes as `attr:${K}`]?: RuxIconPollAttributes[K] } & { [K in keyof RuxIconPoll & keyof RuxIconPollAttributes as `prop:${K}`]?: RuxIconPoll[K] }; "rux-icon-pool": Omit & { [K in keyof RuxIconPool & keyof RuxIconPoolAttributes]?: RuxIconPool[K] } & { [K in keyof RuxIconPool & keyof RuxIconPoolAttributes as `attr:${K}`]?: RuxIconPoolAttributes[K] } & { [K in keyof RuxIconPool & keyof RuxIconPoolAttributes as `prop:${K}`]?: RuxIconPool[K] }; "rux-icon-portable-wifi-off": Omit & { [K in keyof RuxIconPortableWifiOff & keyof RuxIconPortableWifiOffAttributes]?: RuxIconPortableWifiOff[K] } & { [K in keyof RuxIconPortableWifiOff & keyof RuxIconPortableWifiOffAttributes as `attr:${K}`]?: RuxIconPortableWifiOffAttributes[K] } & { [K in keyof RuxIconPortableWifiOff & keyof RuxIconPortableWifiOffAttributes as `prop:${K}`]?: RuxIconPortableWifiOff[K] }; "rux-icon-portrait": Omit & { [K in keyof RuxIconPortrait & keyof RuxIconPortraitAttributes]?: RuxIconPortrait[K] } & { [K in keyof RuxIconPortrait & keyof RuxIconPortraitAttributes as `attr:${K}`]?: RuxIconPortraitAttributes[K] } & { [K in keyof RuxIconPortrait & keyof RuxIconPortraitAttributes as `prop:${K}`]?: RuxIconPortrait[K] }; "rux-icon-power": Omit & { [K in keyof RuxIconPower & keyof RuxIconPowerAttributes]?: RuxIconPower[K] } & { [K in keyof RuxIconPower & keyof RuxIconPowerAttributes as `attr:${K}`]?: RuxIconPowerAttributes[K] } & { [K in keyof RuxIconPower & keyof RuxIconPowerAttributes as `prop:${K}`]?: RuxIconPower[K] }; "rux-icon-power-input": Omit & { [K in keyof RuxIconPowerInput & keyof RuxIconPowerInputAttributes]?: RuxIconPowerInput[K] } & { [K in keyof RuxIconPowerInput & keyof RuxIconPowerInputAttributes as `attr:${K}`]?: RuxIconPowerInputAttributes[K] } & { [K in keyof RuxIconPowerInput & keyof RuxIconPowerInputAttributes as `prop:${K}`]?: RuxIconPowerInput[K] }; "rux-icon-power-off": Omit & { [K in keyof RuxIconPowerOff & keyof RuxIconPowerOffAttributes]?: RuxIconPowerOff[K] } & { [K in keyof RuxIconPowerOff & keyof RuxIconPowerOffAttributes as `attr:${K}`]?: RuxIconPowerOffAttributes[K] } & { [K in keyof RuxIconPowerOff & keyof RuxIconPowerOffAttributes as `prop:${K}`]?: RuxIconPowerOff[K] }; "rux-icon-power-settings-new": Omit & { [K in keyof RuxIconPowerSettingsNew & keyof RuxIconPowerSettingsNewAttributes]?: RuxIconPowerSettingsNew[K] } & { [K in keyof RuxIconPowerSettingsNew & keyof RuxIconPowerSettingsNewAttributes as `attr:${K}`]?: RuxIconPowerSettingsNewAttributes[K] } & { [K in keyof RuxIconPowerSettingsNew & keyof RuxIconPowerSettingsNewAttributes as `prop:${K}`]?: RuxIconPowerSettingsNew[K] }; "rux-icon-pregnant-woman": Omit & { [K in keyof RuxIconPregnantWoman & keyof RuxIconPregnantWomanAttributes]?: RuxIconPregnantWoman[K] } & { [K in keyof RuxIconPregnantWoman & keyof RuxIconPregnantWomanAttributes as `attr:${K}`]?: RuxIconPregnantWomanAttributes[K] } & { [K in keyof RuxIconPregnantWoman & keyof RuxIconPregnantWomanAttributes as `prop:${K}`]?: RuxIconPregnantWoman[K] }; "rux-icon-present-to-all": Omit & { [K in keyof RuxIconPresentToAll & keyof RuxIconPresentToAllAttributes]?: RuxIconPresentToAll[K] } & { [K in keyof RuxIconPresentToAll & keyof RuxIconPresentToAllAttributes as `attr:${K}`]?: RuxIconPresentToAllAttributes[K] } & { [K in keyof RuxIconPresentToAll & keyof RuxIconPresentToAllAttributes as `prop:${K}`]?: RuxIconPresentToAll[K] }; "rux-icon-print": Omit & { [K in keyof RuxIconPrint & keyof RuxIconPrintAttributes]?: RuxIconPrint[K] } & { [K in keyof RuxIconPrint & keyof RuxIconPrintAttributes as `attr:${K}`]?: RuxIconPrintAttributes[K] } & { [K in keyof RuxIconPrint & keyof RuxIconPrintAttributes as `prop:${K}`]?: RuxIconPrint[K] }; "rux-icon-print-disabled": Omit & { [K in keyof RuxIconPrintDisabled & keyof RuxIconPrintDisabledAttributes]?: RuxIconPrintDisabled[K] } & { [K in keyof RuxIconPrintDisabled & keyof RuxIconPrintDisabledAttributes as `attr:${K}`]?: RuxIconPrintDisabledAttributes[K] } & { [K in keyof RuxIconPrintDisabled & keyof RuxIconPrintDisabledAttributes as `prop:${K}`]?: RuxIconPrintDisabled[K] }; "rux-icon-priority-high": Omit & { [K in keyof RuxIconPriorityHigh & keyof RuxIconPriorityHighAttributes]?: RuxIconPriorityHigh[K] } & { [K in keyof RuxIconPriorityHigh & keyof RuxIconPriorityHighAttributes as `attr:${K}`]?: RuxIconPriorityHighAttributes[K] } & { [K in keyof RuxIconPriorityHigh & keyof RuxIconPriorityHighAttributes as `prop:${K}`]?: RuxIconPriorityHigh[K] }; "rux-icon-processor": Omit & { [K in keyof RuxIconProcessor & keyof RuxIconProcessorAttributes]?: RuxIconProcessor[K] } & { [K in keyof RuxIconProcessor & keyof RuxIconProcessorAttributes as `attr:${K}`]?: RuxIconProcessorAttributes[K] } & { [K in keyof RuxIconProcessor & keyof RuxIconProcessorAttributes as `prop:${K}`]?: RuxIconProcessor[K] }; "rux-icon-processor-alt": Omit & { [K in keyof RuxIconProcessorAlt & keyof RuxIconProcessorAltAttributes]?: RuxIconProcessorAlt[K] } & { [K in keyof RuxIconProcessorAlt & keyof RuxIconProcessorAltAttributes as `attr:${K}`]?: RuxIconProcessorAltAttributes[K] } & { [K in keyof RuxIconProcessorAlt & keyof RuxIconProcessorAltAttributes as `prop:${K}`]?: RuxIconProcessorAlt[K] }; "rux-icon-propulsion-power": Omit & { [K in keyof RuxIconPropulsionPower & keyof RuxIconPropulsionPowerAttributes]?: RuxIconPropulsionPower[K] } & { [K in keyof RuxIconPropulsionPower & keyof RuxIconPropulsionPowerAttributes as `attr:${K}`]?: RuxIconPropulsionPowerAttributes[K] } & { [K in keyof RuxIconPropulsionPower & keyof RuxIconPropulsionPowerAttributes as `prop:${K}`]?: RuxIconPropulsionPower[K] }; "rux-icon-public": Omit & { [K in keyof RuxIconPublic & keyof RuxIconPublicAttributes]?: RuxIconPublic[K] } & { [K in keyof RuxIconPublic & keyof RuxIconPublicAttributes as `attr:${K}`]?: RuxIconPublicAttributes[K] } & { [K in keyof RuxIconPublic & keyof RuxIconPublicAttributes as `prop:${K}`]?: RuxIconPublic[K] }; "rux-icon-publish": Omit & { [K in keyof RuxIconPublish & keyof RuxIconPublishAttributes]?: RuxIconPublish[K] } & { [K in keyof RuxIconPublish & keyof RuxIconPublishAttributes as `attr:${K}`]?: RuxIconPublishAttributes[K] } & { [K in keyof RuxIconPublish & keyof RuxIconPublishAttributes as `prop:${K}`]?: RuxIconPublish[K] }; "rux-icon-query-builder": Omit & { [K in keyof RuxIconQueryBuilder & keyof RuxIconQueryBuilderAttributes]?: RuxIconQueryBuilder[K] } & { [K in keyof RuxIconQueryBuilder & keyof RuxIconQueryBuilderAttributes as `attr:${K}`]?: RuxIconQueryBuilderAttributes[K] } & { [K in keyof RuxIconQueryBuilder & keyof RuxIconQueryBuilderAttributes as `prop:${K}`]?: RuxIconQueryBuilder[K] }; "rux-icon-question-answer": Omit & { [K in keyof RuxIconQuestionAnswer & keyof RuxIconQuestionAnswerAttributes]?: RuxIconQuestionAnswer[K] } & { [K in keyof RuxIconQuestionAnswer & keyof RuxIconQuestionAnswerAttributes as `attr:${K}`]?: RuxIconQuestionAnswerAttributes[K] } & { [K in keyof RuxIconQuestionAnswer & keyof RuxIconQuestionAnswerAttributes as `prop:${K}`]?: RuxIconQuestionAnswer[K] }; "rux-icon-queue": Omit & { [K in keyof RuxIconQueue & keyof RuxIconQueueAttributes]?: RuxIconQueue[K] } & { [K in keyof RuxIconQueue & keyof RuxIconQueueAttributes as `attr:${K}`]?: RuxIconQueueAttributes[K] } & { [K in keyof RuxIconQueue & keyof RuxIconQueueAttributes as `prop:${K}`]?: RuxIconQueue[K] }; "rux-icon-queue-music": Omit & { [K in keyof RuxIconQueueMusic & keyof RuxIconQueueMusicAttributes]?: RuxIconQueueMusic[K] } & { [K in keyof RuxIconQueueMusic & keyof RuxIconQueueMusicAttributes as `attr:${K}`]?: RuxIconQueueMusicAttributes[K] } & { [K in keyof RuxIconQueueMusic & keyof RuxIconQueueMusicAttributes as `prop:${K}`]?: RuxIconQueueMusic[K] }; "rux-icon-queue-play-next": Omit & { [K in keyof RuxIconQueuePlayNext & keyof RuxIconQueuePlayNextAttributes]?: RuxIconQueuePlayNext[K] } & { [K in keyof RuxIconQueuePlayNext & keyof RuxIconQueuePlayNextAttributes as `attr:${K}`]?: RuxIconQueuePlayNextAttributes[K] } & { [K in keyof RuxIconQueuePlayNext & keyof RuxIconQueuePlayNextAttributes as `prop:${K}`]?: RuxIconQueuePlayNext[K] }; "rux-icon-radio": Omit & { [K in keyof RuxIconRadio & keyof RuxIconRadioAttributes]?: RuxIconRadio[K] } & { [K in keyof RuxIconRadio & keyof RuxIconRadioAttributes as `attr:${K}`]?: RuxIconRadioAttributes[K] } & { [K in keyof RuxIconRadio & keyof RuxIconRadioAttributes as `prop:${K}`]?: RuxIconRadio[K] }; "rux-icon-radio-button-checked": Omit & { [K in keyof RuxIconRadioButtonChecked & keyof RuxIconRadioButtonCheckedAttributes]?: RuxIconRadioButtonChecked[K] } & { [K in keyof RuxIconRadioButtonChecked & keyof RuxIconRadioButtonCheckedAttributes as `attr:${K}`]?: RuxIconRadioButtonCheckedAttributes[K] } & { [K in keyof RuxIconRadioButtonChecked & keyof RuxIconRadioButtonCheckedAttributes as `prop:${K}`]?: RuxIconRadioButtonChecked[K] }; "rux-icon-radio-button-unchecked": Omit & { [K in keyof RuxIconRadioButtonUnchecked & keyof RuxIconRadioButtonUncheckedAttributes]?: RuxIconRadioButtonUnchecked[K] } & { [K in keyof RuxIconRadioButtonUnchecked & keyof RuxIconRadioButtonUncheckedAttributes as `attr:${K}`]?: RuxIconRadioButtonUncheckedAttributes[K] } & { [K in keyof RuxIconRadioButtonUnchecked & keyof RuxIconRadioButtonUncheckedAttributes as `prop:${K}`]?: RuxIconRadioButtonUnchecked[K] }; "rux-icon-rate-review": Omit & { [K in keyof RuxIconRateReview & keyof RuxIconRateReviewAttributes]?: RuxIconRateReview[K] } & { [K in keyof RuxIconRateReview & keyof RuxIconRateReviewAttributes as `attr:${K}`]?: RuxIconRateReviewAttributes[K] } & { [K in keyof RuxIconRateReview & keyof RuxIconRateReviewAttributes as `prop:${K}`]?: RuxIconRateReview[K] }; "rux-icon-receipt": Omit & { [K in keyof RuxIconReceipt & keyof RuxIconReceiptAttributes]?: RuxIconReceipt[K] } & { [K in keyof RuxIconReceipt & keyof RuxIconReceiptAttributes as `attr:${K}`]?: RuxIconReceiptAttributes[K] } & { [K in keyof RuxIconReceipt & keyof RuxIconReceiptAttributes as `prop:${K}`]?: RuxIconReceipt[K] }; "rux-icon-recent-actors": Omit & { [K in keyof RuxIconRecentActors & keyof RuxIconRecentActorsAttributes]?: RuxIconRecentActors[K] } & { [K in keyof RuxIconRecentActors & keyof RuxIconRecentActorsAttributes as `attr:${K}`]?: RuxIconRecentActorsAttributes[K] } & { [K in keyof RuxIconRecentActors & keyof RuxIconRecentActorsAttributes as `prop:${K}`]?: RuxIconRecentActors[K] }; "rux-icon-record-voice-over": Omit & { [K in keyof RuxIconRecordVoiceOver & keyof RuxIconRecordVoiceOverAttributes]?: RuxIconRecordVoiceOver[K] } & { [K in keyof RuxIconRecordVoiceOver & keyof RuxIconRecordVoiceOverAttributes as `attr:${K}`]?: RuxIconRecordVoiceOverAttributes[K] } & { [K in keyof RuxIconRecordVoiceOver & keyof RuxIconRecordVoiceOverAttributes as `prop:${K}`]?: RuxIconRecordVoiceOver[K] }; "rux-icon-redeem": Omit & { [K in keyof RuxIconRedeem & keyof RuxIconRedeemAttributes]?: RuxIconRedeem[K] } & { [K in keyof RuxIconRedeem & keyof RuxIconRedeemAttributes as `attr:${K}`]?: RuxIconRedeemAttributes[K] } & { [K in keyof RuxIconRedeem & keyof RuxIconRedeemAttributes as `prop:${K}`]?: RuxIconRedeem[K] }; "rux-icon-redo": Omit & { [K in keyof RuxIconRedo & keyof RuxIconRedoAttributes]?: RuxIconRedo[K] } & { [K in keyof RuxIconRedo & keyof RuxIconRedoAttributes as `attr:${K}`]?: RuxIconRedoAttributes[K] } & { [K in keyof RuxIconRedo & keyof RuxIconRedoAttributes as `prop:${K}`]?: RuxIconRedo[K] }; "rux-icon-refresh": Omit & { [K in keyof RuxIconRefresh & keyof RuxIconRefreshAttributes]?: RuxIconRefresh[K] } & { [K in keyof RuxIconRefresh & keyof RuxIconRefreshAttributes as `attr:${K}`]?: RuxIconRefreshAttributes[K] } & { [K in keyof RuxIconRefresh & keyof RuxIconRefreshAttributes as `prop:${K}`]?: RuxIconRefresh[K] }; "rux-icon-release": Omit & { [K in keyof RuxIconRelease & keyof RuxIconReleaseAttributes]?: RuxIconRelease[K] } & { [K in keyof RuxIconRelease & keyof RuxIconReleaseAttributes as `attr:${K}`]?: RuxIconReleaseAttributes[K] } & { [K in keyof RuxIconRelease & keyof RuxIconReleaseAttributes as `prop:${K}`]?: RuxIconRelease[K] }; "rux-icon-remove": Omit & { [K in keyof RuxIconRemove & keyof RuxIconRemoveAttributes]?: RuxIconRemove[K] } & { [K in keyof RuxIconRemove & keyof RuxIconRemoveAttributes as `attr:${K}`]?: RuxIconRemoveAttributes[K] } & { [K in keyof RuxIconRemove & keyof RuxIconRemoveAttributes as `prop:${K}`]?: RuxIconRemove[K] }; "rux-icon-remove-circle": Omit & { [K in keyof RuxIconRemoveCircle & keyof RuxIconRemoveCircleAttributes]?: RuxIconRemoveCircle[K] } & { [K in keyof RuxIconRemoveCircle & keyof RuxIconRemoveCircleAttributes as `attr:${K}`]?: RuxIconRemoveCircleAttributes[K] } & { [K in keyof RuxIconRemoveCircle & keyof RuxIconRemoveCircleAttributes as `prop:${K}`]?: RuxIconRemoveCircle[K] }; "rux-icon-remove-circle-outline": Omit & { [K in keyof RuxIconRemoveCircleOutline & keyof RuxIconRemoveCircleOutlineAttributes]?: RuxIconRemoveCircleOutline[K] } & { [K in keyof RuxIconRemoveCircleOutline & keyof RuxIconRemoveCircleOutlineAttributes as `attr:${K}`]?: RuxIconRemoveCircleOutlineAttributes[K] } & { [K in keyof RuxIconRemoveCircleOutline & keyof RuxIconRemoveCircleOutlineAttributes as `prop:${K}`]?: RuxIconRemoveCircleOutline[K] }; "rux-icon-remove-from-queue": Omit & { [K in keyof RuxIconRemoveFromQueue & keyof RuxIconRemoveFromQueueAttributes]?: RuxIconRemoveFromQueue[K] } & { [K in keyof RuxIconRemoveFromQueue & keyof RuxIconRemoveFromQueueAttributes as `attr:${K}`]?: RuxIconRemoveFromQueueAttributes[K] } & { [K in keyof RuxIconRemoveFromQueue & keyof RuxIconRemoveFromQueueAttributes as `prop:${K}`]?: RuxIconRemoveFromQueue[K] }; "rux-icon-remove-red-eye": Omit & { [K in keyof RuxIconRemoveRedEye & keyof RuxIconRemoveRedEyeAttributes]?: RuxIconRemoveRedEye[K] } & { [K in keyof RuxIconRemoveRedEye & keyof RuxIconRemoveRedEyeAttributes as `attr:${K}`]?: RuxIconRemoveRedEyeAttributes[K] } & { [K in keyof RuxIconRemoveRedEye & keyof RuxIconRemoveRedEyeAttributes as `prop:${K}`]?: RuxIconRemoveRedEye[K] }; "rux-icon-remove-shopping-cart": Omit & { [K in keyof RuxIconRemoveShoppingCart & keyof RuxIconRemoveShoppingCartAttributes]?: RuxIconRemoveShoppingCart[K] } & { [K in keyof RuxIconRemoveShoppingCart & keyof RuxIconRemoveShoppingCartAttributes as `attr:${K}`]?: RuxIconRemoveShoppingCartAttributes[K] } & { [K in keyof RuxIconRemoveShoppingCart & keyof RuxIconRemoveShoppingCartAttributes as `prop:${K}`]?: RuxIconRemoveShoppingCart[K] }; "rux-icon-reorder": Omit & { [K in keyof RuxIconReorder & keyof RuxIconReorderAttributes]?: RuxIconReorder[K] } & { [K in keyof RuxIconReorder & keyof RuxIconReorderAttributes as `attr:${K}`]?: RuxIconReorderAttributes[K] } & { [K in keyof RuxIconReorder & keyof RuxIconReorderAttributes as `prop:${K}`]?: RuxIconReorder[K] }; "rux-icon-repeat": Omit & { [K in keyof RuxIconRepeat & keyof RuxIconRepeatAttributes]?: RuxIconRepeat[K] } & { [K in keyof RuxIconRepeat & keyof RuxIconRepeatAttributes as `attr:${K}`]?: RuxIconRepeatAttributes[K] } & { [K in keyof RuxIconRepeat & keyof RuxIconRepeatAttributes as `prop:${K}`]?: RuxIconRepeat[K] }; "rux-icon-repeat-one": Omit & { [K in keyof RuxIconRepeatOne & keyof RuxIconRepeatOneAttributes]?: RuxIconRepeatOne[K] } & { [K in keyof RuxIconRepeatOne & keyof RuxIconRepeatOneAttributes as `attr:${K}`]?: RuxIconRepeatOneAttributes[K] } & { [K in keyof RuxIconRepeatOne & keyof RuxIconRepeatOneAttributes as `prop:${K}`]?: RuxIconRepeatOne[K] }; "rux-icon-replay": Omit & { [K in keyof RuxIconReplay & keyof RuxIconReplayAttributes]?: RuxIconReplay[K] } & { [K in keyof RuxIconReplay & keyof RuxIconReplayAttributes as `attr:${K}`]?: RuxIconReplayAttributes[K] } & { [K in keyof RuxIconReplay & keyof RuxIconReplayAttributes as `prop:${K}`]?: RuxIconReplay[K] }; "rux-icon-replay-10": Omit & { [K in keyof RuxIconReplay10 & keyof RuxIconReplay10Attributes]?: RuxIconReplay10[K] } & { [K in keyof RuxIconReplay10 & keyof RuxIconReplay10Attributes as `attr:${K}`]?: RuxIconReplay10Attributes[K] } & { [K in keyof RuxIconReplay10 & keyof RuxIconReplay10Attributes as `prop:${K}`]?: RuxIconReplay10[K] }; "rux-icon-replay-30": Omit & { [K in keyof RuxIconReplay30 & keyof RuxIconReplay30Attributes]?: RuxIconReplay30[K] } & { [K in keyof RuxIconReplay30 & keyof RuxIconReplay30Attributes as `attr:${K}`]?: RuxIconReplay30Attributes[K] } & { [K in keyof RuxIconReplay30 & keyof RuxIconReplay30Attributes as `prop:${K}`]?: RuxIconReplay30[K] }; "rux-icon-replay-5": Omit & { [K in keyof RuxIconReplay5 & keyof RuxIconReplay5Attributes]?: RuxIconReplay5[K] } & { [K in keyof RuxIconReplay5 & keyof RuxIconReplay5Attributes as `attr:${K}`]?: RuxIconReplay5Attributes[K] } & { [K in keyof RuxIconReplay5 & keyof RuxIconReplay5Attributes as `prop:${K}`]?: RuxIconReplay5[K] }; "rux-icon-reply": Omit & { [K in keyof RuxIconReply & keyof RuxIconReplyAttributes]?: RuxIconReply[K] } & { [K in keyof RuxIconReply & keyof RuxIconReplyAttributes as `attr:${K}`]?: RuxIconReplyAttributes[K] } & { [K in keyof RuxIconReply & keyof RuxIconReplyAttributes as `prop:${K}`]?: RuxIconReply[K] }; "rux-icon-reply-all": Omit & { [K in keyof RuxIconReplyAll & keyof RuxIconReplyAllAttributes]?: RuxIconReplyAll[K] } & { [K in keyof RuxIconReplyAll & keyof RuxIconReplyAllAttributes as `attr:${K}`]?: RuxIconReplyAllAttributes[K] } & { [K in keyof RuxIconReplyAll & keyof RuxIconReplyAllAttributes as `prop:${K}`]?: RuxIconReplyAll[K] }; "rux-icon-report": Omit & { [K in keyof RuxIconReport & keyof RuxIconReportAttributes]?: RuxIconReport[K] } & { [K in keyof RuxIconReport & keyof RuxIconReportAttributes as `attr:${K}`]?: RuxIconReportAttributes[K] } & { [K in keyof RuxIconReport & keyof RuxIconReportAttributes as `prop:${K}`]?: RuxIconReport[K] }; "rux-icon-report-off": Omit & { [K in keyof RuxIconReportOff & keyof RuxIconReportOffAttributes]?: RuxIconReportOff[K] } & { [K in keyof RuxIconReportOff & keyof RuxIconReportOffAttributes as `attr:${K}`]?: RuxIconReportOffAttributes[K] } & { [K in keyof RuxIconReportOff & keyof RuxIconReportOffAttributes as `prop:${K}`]?: RuxIconReportOff[K] }; "rux-icon-report-problem": Omit & { [K in keyof RuxIconReportProblem & keyof RuxIconReportProblemAttributes]?: RuxIconReportProblem[K] } & { [K in keyof RuxIconReportProblem & keyof RuxIconReportProblemAttributes as `attr:${K}`]?: RuxIconReportProblemAttributes[K] } & { [K in keyof RuxIconReportProblem & keyof RuxIconReportProblemAttributes as `prop:${K}`]?: RuxIconReportProblem[K] }; "rux-icon-restaurant": Omit & { [K in keyof RuxIconRestaurant & keyof RuxIconRestaurantAttributes]?: RuxIconRestaurant[K] } & { [K in keyof RuxIconRestaurant & keyof RuxIconRestaurantAttributes as `attr:${K}`]?: RuxIconRestaurantAttributes[K] } & { [K in keyof RuxIconRestaurant & keyof RuxIconRestaurantAttributes as `prop:${K}`]?: RuxIconRestaurant[K] }; "rux-icon-restaurant-menu": Omit & { [K in keyof RuxIconRestaurantMenu & keyof RuxIconRestaurantMenuAttributes]?: RuxIconRestaurantMenu[K] } & { [K in keyof RuxIconRestaurantMenu & keyof RuxIconRestaurantMenuAttributes as `attr:${K}`]?: RuxIconRestaurantMenuAttributes[K] } & { [K in keyof RuxIconRestaurantMenu & keyof RuxIconRestaurantMenuAttributes as `prop:${K}`]?: RuxIconRestaurantMenu[K] }; "rux-icon-restore": Omit & { [K in keyof RuxIconRestore & keyof RuxIconRestoreAttributes]?: RuxIconRestore[K] } & { [K in keyof RuxIconRestore & keyof RuxIconRestoreAttributes as `attr:${K}`]?: RuxIconRestoreAttributes[K] } & { [K in keyof RuxIconRestore & keyof RuxIconRestoreAttributes as `prop:${K}`]?: RuxIconRestore[K] }; "rux-icon-restore-from-trash": Omit & { [K in keyof RuxIconRestoreFromTrash & keyof RuxIconRestoreFromTrashAttributes]?: RuxIconRestoreFromTrash[K] } & { [K in keyof RuxIconRestoreFromTrash & keyof RuxIconRestoreFromTrashAttributes as `attr:${K}`]?: RuxIconRestoreFromTrashAttributes[K] } & { [K in keyof RuxIconRestoreFromTrash & keyof RuxIconRestoreFromTrashAttributes as `prop:${K}`]?: RuxIconRestoreFromTrash[K] }; "rux-icon-restore-page": Omit & { [K in keyof RuxIconRestorePage & keyof RuxIconRestorePageAttributes]?: RuxIconRestorePage[K] } & { [K in keyof RuxIconRestorePage & keyof RuxIconRestorePageAttributes as `attr:${K}`]?: RuxIconRestorePageAttributes[K] } & { [K in keyof RuxIconRestorePage & keyof RuxIconRestorePageAttributes as `prop:${K}`]?: RuxIconRestorePage[K] }; "rux-icon-ring-volume": Omit & { [K in keyof RuxIconRingVolume & keyof RuxIconRingVolumeAttributes]?: RuxIconRingVolume[K] } & { [K in keyof RuxIconRingVolume & keyof RuxIconRingVolumeAttributes as `attr:${K}`]?: RuxIconRingVolumeAttributes[K] } & { [K in keyof RuxIconRingVolume & keyof RuxIconRingVolumeAttributes as `prop:${K}`]?: RuxIconRingVolume[K] }; "rux-icon-room": Omit & { [K in keyof RuxIconRoom & keyof RuxIconRoomAttributes]?: RuxIconRoom[K] } & { [K in keyof RuxIconRoom & keyof RuxIconRoomAttributes as `attr:${K}`]?: RuxIconRoomAttributes[K] } & { [K in keyof RuxIconRoom & keyof RuxIconRoomAttributes as `prop:${K}`]?: RuxIconRoom[K] }; "rux-icon-room-service": Omit & { [K in keyof RuxIconRoomService & keyof RuxIconRoomServiceAttributes]?: RuxIconRoomService[K] } & { [K in keyof RuxIconRoomService & keyof RuxIconRoomServiceAttributes as `attr:${K}`]?: RuxIconRoomServiceAttributes[K] } & { [K in keyof RuxIconRoomService & keyof RuxIconRoomServiceAttributes as `prop:${K}`]?: RuxIconRoomService[K] }; "rux-icon-rotate-90-degrees-cc": Omit & { [K in keyof RuxIconRotate90DegreesCc & keyof RuxIconRotate90DegreesCcAttributes]?: RuxIconRotate90DegreesCc[K] } & { [K in keyof RuxIconRotate90DegreesCc & keyof RuxIconRotate90DegreesCcAttributes as `attr:${K}`]?: RuxIconRotate90DegreesCcAttributes[K] } & { [K in keyof RuxIconRotate90DegreesCc & keyof RuxIconRotate90DegreesCcAttributes as `prop:${K}`]?: RuxIconRotate90DegreesCc[K] }; "rux-icon-rotate-left": Omit & { [K in keyof RuxIconRotateLeft & keyof RuxIconRotateLeftAttributes]?: RuxIconRotateLeft[K] } & { [K in keyof RuxIconRotateLeft & keyof RuxIconRotateLeftAttributes as `attr:${K}`]?: RuxIconRotateLeftAttributes[K] } & { [K in keyof RuxIconRotateLeft & keyof RuxIconRotateLeftAttributes as `prop:${K}`]?: RuxIconRotateLeft[K] }; "rux-icon-rotate-right": Omit & { [K in keyof RuxIconRotateRight & keyof RuxIconRotateRightAttributes]?: RuxIconRotateRight[K] } & { [K in keyof RuxIconRotateRight & keyof RuxIconRotateRightAttributes as `attr:${K}`]?: RuxIconRotateRightAttributes[K] } & { [K in keyof RuxIconRotateRight & keyof RuxIconRotateRightAttributes as `prop:${K}`]?: RuxIconRotateRight[K] }; "rux-icon-rounded-corner": Omit & { [K in keyof RuxIconRoundedCorner & keyof RuxIconRoundedCornerAttributes]?: RuxIconRoundedCorner[K] } & { [K in keyof RuxIconRoundedCorner & keyof RuxIconRoundedCornerAttributes as `attr:${K}`]?: RuxIconRoundedCornerAttributes[K] } & { [K in keyof RuxIconRoundedCorner & keyof RuxIconRoundedCornerAttributes as `prop:${K}`]?: RuxIconRoundedCorner[K] }; "rux-icon-router": Omit & { [K in keyof RuxIconRouter & keyof RuxIconRouterAttributes]?: RuxIconRouter[K] } & { [K in keyof RuxIconRouter & keyof RuxIconRouterAttributes as `attr:${K}`]?: RuxIconRouterAttributes[K] } & { [K in keyof RuxIconRouter & keyof RuxIconRouterAttributes as `prop:${K}`]?: RuxIconRouter[K] }; "rux-icon-rowing": Omit & { [K in keyof RuxIconRowing & keyof RuxIconRowingAttributes]?: RuxIconRowing[K] } & { [K in keyof RuxIconRowing & keyof RuxIconRowingAttributes as `attr:${K}`]?: RuxIconRowingAttributes[K] } & { [K in keyof RuxIconRowing & keyof RuxIconRowingAttributes as `prop:${K}`]?: RuxIconRowing[K] }; "rux-icon-rss-feed": Omit & { [K in keyof RuxIconRssFeed & keyof RuxIconRssFeedAttributes]?: RuxIconRssFeed[K] } & { [K in keyof RuxIconRssFeed & keyof RuxIconRssFeedAttributes as `attr:${K}`]?: RuxIconRssFeedAttributes[K] } & { [K in keyof RuxIconRssFeed & keyof RuxIconRssFeedAttributes as `prop:${K}`]?: RuxIconRssFeed[K] }; "rux-icon-rv-hookup": Omit & { [K in keyof RuxIconRvHookup & keyof RuxIconRvHookupAttributes]?: RuxIconRvHookup[K] } & { [K in keyof RuxIconRvHookup & keyof RuxIconRvHookupAttributes as `attr:${K}`]?: RuxIconRvHookupAttributes[K] } & { [K in keyof RuxIconRvHookup & keyof RuxIconRvHookupAttributes as `prop:${K}`]?: RuxIconRvHookup[K] }; "rux-icon-satellite": Omit & { [K in keyof RuxIconSatellite & keyof RuxIconSatelliteAttributes]?: RuxIconSatellite[K] } & { [K in keyof RuxIconSatellite & keyof RuxIconSatelliteAttributes as `attr:${K}`]?: RuxIconSatelliteAttributes[K] } & { [K in keyof RuxIconSatellite & keyof RuxIconSatelliteAttributes as `prop:${K}`]?: RuxIconSatellite[K] }; "rux-icon-satellite-off": Omit & { [K in keyof RuxIconSatelliteOff & keyof RuxIconSatelliteOffAttributes]?: RuxIconSatelliteOff[K] } & { [K in keyof RuxIconSatelliteOff & keyof RuxIconSatelliteOffAttributes as `attr:${K}`]?: RuxIconSatelliteOffAttributes[K] } & { [K in keyof RuxIconSatelliteOff & keyof RuxIconSatelliteOffAttributes as `prop:${K}`]?: RuxIconSatelliteOff[K] }; "rux-icon-satellite-receive": Omit & { [K in keyof RuxIconSatelliteReceive & keyof RuxIconSatelliteReceiveAttributes]?: RuxIconSatelliteReceive[K] } & { [K in keyof RuxIconSatelliteReceive & keyof RuxIconSatelliteReceiveAttributes as `attr:${K}`]?: RuxIconSatelliteReceiveAttributes[K] } & { [K in keyof RuxIconSatelliteReceive & keyof RuxIconSatelliteReceiveAttributes as `prop:${K}`]?: RuxIconSatelliteReceive[K] }; "rux-icon-satellite-transmit": Omit & { [K in keyof RuxIconSatelliteTransmit & keyof RuxIconSatelliteTransmitAttributes]?: RuxIconSatelliteTransmit[K] } & { [K in keyof RuxIconSatelliteTransmit & keyof RuxIconSatelliteTransmitAttributes as `attr:${K}`]?: RuxIconSatelliteTransmitAttributes[K] } & { [K in keyof RuxIconSatelliteTransmit & keyof RuxIconSatelliteTransmitAttributes as `prop:${K}`]?: RuxIconSatelliteTransmit[K] }; "rux-icon-save": Omit & { [K in keyof RuxIconSave & keyof RuxIconSaveAttributes]?: RuxIconSave[K] } & { [K in keyof RuxIconSave & keyof RuxIconSaveAttributes as `attr:${K}`]?: RuxIconSaveAttributes[K] } & { [K in keyof RuxIconSave & keyof RuxIconSaveAttributes as `prop:${K}`]?: RuxIconSave[K] }; "rux-icon-save-alt": Omit & { [K in keyof RuxIconSaveAlt & keyof RuxIconSaveAltAttributes]?: RuxIconSaveAlt[K] } & { [K in keyof RuxIconSaveAlt & keyof RuxIconSaveAltAttributes as `attr:${K}`]?: RuxIconSaveAltAttributes[K] } & { [K in keyof RuxIconSaveAlt & keyof RuxIconSaveAltAttributes as `prop:${K}`]?: RuxIconSaveAlt[K] }; "rux-icon-scanner": Omit & { [K in keyof RuxIconScanner & keyof RuxIconScannerAttributes]?: RuxIconScanner[K] } & { [K in keyof RuxIconScanner & keyof RuxIconScannerAttributes as `attr:${K}`]?: RuxIconScannerAttributes[K] } & { [K in keyof RuxIconScanner & keyof RuxIconScannerAttributes as `prop:${K}`]?: RuxIconScanner[K] }; "rux-icon-scatter-plot": Omit & { [K in keyof RuxIconScatterPlot & keyof RuxIconScatterPlotAttributes]?: RuxIconScatterPlot[K] } & { [K in keyof RuxIconScatterPlot & keyof RuxIconScatterPlotAttributes as `attr:${K}`]?: RuxIconScatterPlotAttributes[K] } & { [K in keyof RuxIconScatterPlot & keyof RuxIconScatterPlotAttributes as `prop:${K}`]?: RuxIconScatterPlot[K] }; "rux-icon-schedule": Omit & { [K in keyof RuxIconSchedule & keyof RuxIconScheduleAttributes]?: RuxIconSchedule[K] } & { [K in keyof RuxIconSchedule & keyof RuxIconScheduleAttributes as `attr:${K}`]?: RuxIconScheduleAttributes[K] } & { [K in keyof RuxIconSchedule & keyof RuxIconScheduleAttributes as `prop:${K}`]?: RuxIconSchedule[K] }; "rux-icon-school": Omit & { [K in keyof RuxIconSchool & keyof RuxIconSchoolAttributes]?: RuxIconSchool[K] } & { [K in keyof RuxIconSchool & keyof RuxIconSchoolAttributes as `attr:${K}`]?: RuxIconSchoolAttributes[K] } & { [K in keyof RuxIconSchool & keyof RuxIconSchoolAttributes as `prop:${K}`]?: RuxIconSchool[K] }; "rux-icon-score": Omit & { [K in keyof RuxIconScore & keyof RuxIconScoreAttributes]?: RuxIconScore[K] } & { [K in keyof RuxIconScore & keyof RuxIconScoreAttributes as `attr:${K}`]?: RuxIconScoreAttributes[K] } & { [K in keyof RuxIconScore & keyof RuxIconScoreAttributes as `prop:${K}`]?: RuxIconScore[K] }; "rux-icon-screen-lock-landscape": Omit & { [K in keyof RuxIconScreenLockLandscape & keyof RuxIconScreenLockLandscapeAttributes]?: RuxIconScreenLockLandscape[K] } & { [K in keyof RuxIconScreenLockLandscape & keyof RuxIconScreenLockLandscapeAttributes as `attr:${K}`]?: RuxIconScreenLockLandscapeAttributes[K] } & { [K in keyof RuxIconScreenLockLandscape & keyof RuxIconScreenLockLandscapeAttributes as `prop:${K}`]?: RuxIconScreenLockLandscape[K] }; "rux-icon-screen-lock-portrait": Omit & { [K in keyof RuxIconScreenLockPortrait & keyof RuxIconScreenLockPortraitAttributes]?: RuxIconScreenLockPortrait[K] } & { [K in keyof RuxIconScreenLockPortrait & keyof RuxIconScreenLockPortraitAttributes as `attr:${K}`]?: RuxIconScreenLockPortraitAttributes[K] } & { [K in keyof RuxIconScreenLockPortrait & keyof RuxIconScreenLockPortraitAttributes as `prop:${K}`]?: RuxIconScreenLockPortrait[K] }; "rux-icon-screen-lock-rotation": Omit & { [K in keyof RuxIconScreenLockRotation & keyof RuxIconScreenLockRotationAttributes]?: RuxIconScreenLockRotation[K] } & { [K in keyof RuxIconScreenLockRotation & keyof RuxIconScreenLockRotationAttributes as `attr:${K}`]?: RuxIconScreenLockRotationAttributes[K] } & { [K in keyof RuxIconScreenLockRotation & keyof RuxIconScreenLockRotationAttributes as `prop:${K}`]?: RuxIconScreenLockRotation[K] }; "rux-icon-screen-rotation": Omit & { [K in keyof RuxIconScreenRotation & keyof RuxIconScreenRotationAttributes]?: RuxIconScreenRotation[K] } & { [K in keyof RuxIconScreenRotation & keyof RuxIconScreenRotationAttributes as `attr:${K}`]?: RuxIconScreenRotationAttributes[K] } & { [K in keyof RuxIconScreenRotation & keyof RuxIconScreenRotationAttributes as `prop:${K}`]?: RuxIconScreenRotation[K] }; "rux-icon-screen-share": Omit & { [K in keyof RuxIconScreenShare & keyof RuxIconScreenShareAttributes]?: RuxIconScreenShare[K] } & { [K in keyof RuxIconScreenShare & keyof RuxIconScreenShareAttributes as `attr:${K}`]?: RuxIconScreenShareAttributes[K] } & { [K in keyof RuxIconScreenShare & keyof RuxIconScreenShareAttributes as `prop:${K}`]?: RuxIconScreenShare[K] }; "rux-icon-sd-card": Omit & { [K in keyof RuxIconSdCard & keyof RuxIconSdCardAttributes]?: RuxIconSdCard[K] } & { [K in keyof RuxIconSdCard & keyof RuxIconSdCardAttributes as `attr:${K}`]?: RuxIconSdCardAttributes[K] } & { [K in keyof RuxIconSdCard & keyof RuxIconSdCardAttributes as `prop:${K}`]?: RuxIconSdCard[K] }; "rux-icon-sd-storage": Omit & { [K in keyof RuxIconSdStorage & keyof RuxIconSdStorageAttributes]?: RuxIconSdStorage[K] } & { [K in keyof RuxIconSdStorage & keyof RuxIconSdStorageAttributes as `attr:${K}`]?: RuxIconSdStorageAttributes[K] } & { [K in keyof RuxIconSdStorage & keyof RuxIconSdStorageAttributes as `prop:${K}`]?: RuxIconSdStorage[K] }; "rux-icon-search": Omit & { [K in keyof RuxIconSearch & keyof RuxIconSearchAttributes]?: RuxIconSearch[K] } & { [K in keyof RuxIconSearch & keyof RuxIconSearchAttributes as `attr:${K}`]?: RuxIconSearchAttributes[K] } & { [K in keyof RuxIconSearch & keyof RuxIconSearchAttributes as `prop:${K}`]?: RuxIconSearch[K] }; "rux-icon-seat": Omit & { [K in keyof RuxIconSeat & keyof RuxIconSeatAttributes]?: RuxIconSeat[K] } & { [K in keyof RuxIconSeat & keyof RuxIconSeatAttributes as `attr:${K}`]?: RuxIconSeatAttributes[K] } & { [K in keyof RuxIconSeat & keyof RuxIconSeatAttributes as `prop:${K}`]?: RuxIconSeat[K] }; "rux-icon-security": Omit & { [K in keyof RuxIconSecurity & keyof RuxIconSecurityAttributes]?: RuxIconSecurity[K] } & { [K in keyof RuxIconSecurity & keyof RuxIconSecurityAttributes as `attr:${K}`]?: RuxIconSecurityAttributes[K] } & { [K in keyof RuxIconSecurity & keyof RuxIconSecurityAttributes as `prop:${K}`]?: RuxIconSecurity[K] }; "rux-icon-select-all": Omit & { [K in keyof RuxIconSelectAll & keyof RuxIconSelectAllAttributes]?: RuxIconSelectAll[K] } & { [K in keyof RuxIconSelectAll & keyof RuxIconSelectAllAttributes as `attr:${K}`]?: RuxIconSelectAllAttributes[K] } & { [K in keyof RuxIconSelectAll & keyof RuxIconSelectAllAttributes as `prop:${K}`]?: RuxIconSelectAll[K] }; "rux-icon-send": Omit & { [K in keyof RuxIconSend & keyof RuxIconSendAttributes]?: RuxIconSend[K] } & { [K in keyof RuxIconSend & keyof RuxIconSendAttributes as `attr:${K}`]?: RuxIconSendAttributes[K] } & { [K in keyof RuxIconSend & keyof RuxIconSendAttributes as `prop:${K}`]?: RuxIconSend[K] }; "rux-icon-sentiment-dissatisfied": Omit & { [K in keyof RuxIconSentimentDissatisfied & keyof RuxIconSentimentDissatisfiedAttributes]?: RuxIconSentimentDissatisfied[K] } & { [K in keyof RuxIconSentimentDissatisfied & keyof RuxIconSentimentDissatisfiedAttributes as `attr:${K}`]?: RuxIconSentimentDissatisfiedAttributes[K] } & { [K in keyof RuxIconSentimentDissatisfied & keyof RuxIconSentimentDissatisfiedAttributes as `prop:${K}`]?: RuxIconSentimentDissatisfied[K] }; "rux-icon-sentiment-satisfied": Omit & { [K in keyof RuxIconSentimentSatisfied & keyof RuxIconSentimentSatisfiedAttributes]?: RuxIconSentimentSatisfied[K] } & { [K in keyof RuxIconSentimentSatisfied & keyof RuxIconSentimentSatisfiedAttributes as `attr:${K}`]?: RuxIconSentimentSatisfiedAttributes[K] } & { [K in keyof RuxIconSentimentSatisfied & keyof RuxIconSentimentSatisfiedAttributes as `prop:${K}`]?: RuxIconSentimentSatisfied[K] }; "rux-icon-sentiment-satisfied-alt": Omit & { [K in keyof RuxIconSentimentSatisfiedAlt & keyof RuxIconSentimentSatisfiedAltAttributes]?: RuxIconSentimentSatisfiedAlt[K] } & { [K in keyof RuxIconSentimentSatisfiedAlt & keyof RuxIconSentimentSatisfiedAltAttributes as `attr:${K}`]?: RuxIconSentimentSatisfiedAltAttributes[K] } & { [K in keyof RuxIconSentimentSatisfiedAlt & keyof RuxIconSentimentSatisfiedAltAttributes as `prop:${K}`]?: RuxIconSentimentSatisfiedAlt[K] }; "rux-icon-sentiment-very-dissatisfied": Omit & { [K in keyof RuxIconSentimentVeryDissatisfied & keyof RuxIconSentimentVeryDissatisfiedAttributes]?: RuxIconSentimentVeryDissatisfied[K] } & { [K in keyof RuxIconSentimentVeryDissatisfied & keyof RuxIconSentimentVeryDissatisfiedAttributes as `attr:${K}`]?: RuxIconSentimentVeryDissatisfiedAttributes[K] } & { [K in keyof RuxIconSentimentVeryDissatisfied & keyof RuxIconSentimentVeryDissatisfiedAttributes as `prop:${K}`]?: RuxIconSentimentVeryDissatisfied[K] }; "rux-icon-sentiment-very-satisfied": Omit & { [K in keyof RuxIconSentimentVerySatisfied & keyof RuxIconSentimentVerySatisfiedAttributes]?: RuxIconSentimentVerySatisfied[K] } & { [K in keyof RuxIconSentimentVerySatisfied & keyof RuxIconSentimentVerySatisfiedAttributes as `attr:${K}`]?: RuxIconSentimentVerySatisfiedAttributes[K] } & { [K in keyof RuxIconSentimentVerySatisfied & keyof RuxIconSentimentVerySatisfiedAttributes as `prop:${K}`]?: RuxIconSentimentVerySatisfied[K] }; "rux-icon-set-power": Omit & { [K in keyof RuxIconSetPower & keyof RuxIconSetPowerAttributes]?: RuxIconSetPower[K] } & { [K in keyof RuxIconSetPower & keyof RuxIconSetPowerAttributes as `attr:${K}`]?: RuxIconSetPowerAttributes[K] } & { [K in keyof RuxIconSetPower & keyof RuxIconSetPowerAttributes as `prop:${K}`]?: RuxIconSetPower[K] }; "rux-icon-settings": Omit & { [K in keyof RuxIconSettings & keyof RuxIconSettingsAttributes]?: RuxIconSettings[K] } & { [K in keyof RuxIconSettings & keyof RuxIconSettingsAttributes as `attr:${K}`]?: RuxIconSettingsAttributes[K] } & { [K in keyof RuxIconSettings & keyof RuxIconSettingsAttributes as `prop:${K}`]?: RuxIconSettings[K] }; "rux-icon-settings-applications": Omit & { [K in keyof RuxIconSettingsApplications & keyof RuxIconSettingsApplicationsAttributes]?: RuxIconSettingsApplications[K] } & { [K in keyof RuxIconSettingsApplications & keyof RuxIconSettingsApplicationsAttributes as `attr:${K}`]?: RuxIconSettingsApplicationsAttributes[K] } & { [K in keyof RuxIconSettingsApplications & keyof RuxIconSettingsApplicationsAttributes as `prop:${K}`]?: RuxIconSettingsApplications[K] }; "rux-icon-settings-backup-restore": Omit & { [K in keyof RuxIconSettingsBackupRestore & keyof RuxIconSettingsBackupRestoreAttributes]?: RuxIconSettingsBackupRestore[K] } & { [K in keyof RuxIconSettingsBackupRestore & keyof RuxIconSettingsBackupRestoreAttributes as `attr:${K}`]?: RuxIconSettingsBackupRestoreAttributes[K] } & { [K in keyof RuxIconSettingsBackupRestore & keyof RuxIconSettingsBackupRestoreAttributes as `prop:${K}`]?: RuxIconSettingsBackupRestore[K] }; "rux-icon-settings-bluetooth": Omit & { [K in keyof RuxIconSettingsBluetooth & keyof RuxIconSettingsBluetoothAttributes]?: RuxIconSettingsBluetooth[K] } & { [K in keyof RuxIconSettingsBluetooth & keyof RuxIconSettingsBluetoothAttributes as `attr:${K}`]?: RuxIconSettingsBluetoothAttributes[K] } & { [K in keyof RuxIconSettingsBluetooth & keyof RuxIconSettingsBluetoothAttributes as `prop:${K}`]?: RuxIconSettingsBluetooth[K] }; "rux-icon-settings-brightness": Omit & { [K in keyof RuxIconSettingsBrightness & keyof RuxIconSettingsBrightnessAttributes]?: RuxIconSettingsBrightness[K] } & { [K in keyof RuxIconSettingsBrightness & keyof RuxIconSettingsBrightnessAttributes as `attr:${K}`]?: RuxIconSettingsBrightnessAttributes[K] } & { [K in keyof RuxIconSettingsBrightness & keyof RuxIconSettingsBrightnessAttributes as `prop:${K}`]?: RuxIconSettingsBrightness[K] }; "rux-icon-settings-cell": Omit & { [K in keyof RuxIconSettingsCell & keyof RuxIconSettingsCellAttributes]?: RuxIconSettingsCell[K] } & { [K in keyof RuxIconSettingsCell & keyof RuxIconSettingsCellAttributes as `attr:${K}`]?: RuxIconSettingsCellAttributes[K] } & { [K in keyof RuxIconSettingsCell & keyof RuxIconSettingsCellAttributes as `prop:${K}`]?: RuxIconSettingsCell[K] }; "rux-icon-settings-ethernet": Omit & { [K in keyof RuxIconSettingsEthernet & keyof RuxIconSettingsEthernetAttributes]?: RuxIconSettingsEthernet[K] } & { [K in keyof RuxIconSettingsEthernet & keyof RuxIconSettingsEthernetAttributes as `attr:${K}`]?: RuxIconSettingsEthernetAttributes[K] } & { [K in keyof RuxIconSettingsEthernet & keyof RuxIconSettingsEthernetAttributes as `prop:${K}`]?: RuxIconSettingsEthernet[K] }; "rux-icon-settings-input-antenna": Omit & { [K in keyof RuxIconSettingsInputAntenna & keyof RuxIconSettingsInputAntennaAttributes]?: RuxIconSettingsInputAntenna[K] } & { [K in keyof RuxIconSettingsInputAntenna & keyof RuxIconSettingsInputAntennaAttributes as `attr:${K}`]?: RuxIconSettingsInputAntennaAttributes[K] } & { [K in keyof RuxIconSettingsInputAntenna & keyof RuxIconSettingsInputAntennaAttributes as `prop:${K}`]?: RuxIconSettingsInputAntenna[K] }; "rux-icon-settings-input-component": Omit & { [K in keyof RuxIconSettingsInputComponent & keyof RuxIconSettingsInputComponentAttributes]?: RuxIconSettingsInputComponent[K] } & { [K in keyof RuxIconSettingsInputComponent & keyof RuxIconSettingsInputComponentAttributes as `attr:${K}`]?: RuxIconSettingsInputComponentAttributes[K] } & { [K in keyof RuxIconSettingsInputComponent & keyof RuxIconSettingsInputComponentAttributes as `prop:${K}`]?: RuxIconSettingsInputComponent[K] }; "rux-icon-settings-input-composite": Omit & { [K in keyof RuxIconSettingsInputComposite & keyof RuxIconSettingsInputCompositeAttributes]?: RuxIconSettingsInputComposite[K] } & { [K in keyof RuxIconSettingsInputComposite & keyof RuxIconSettingsInputCompositeAttributes as `attr:${K}`]?: RuxIconSettingsInputCompositeAttributes[K] } & { [K in keyof RuxIconSettingsInputComposite & keyof RuxIconSettingsInputCompositeAttributes as `prop:${K}`]?: RuxIconSettingsInputComposite[K] }; "rux-icon-settings-input-hdmi": Omit & { [K in keyof RuxIconSettingsInputHdmi & keyof RuxIconSettingsInputHdmiAttributes]?: RuxIconSettingsInputHdmi[K] } & { [K in keyof RuxIconSettingsInputHdmi & keyof RuxIconSettingsInputHdmiAttributes as `attr:${K}`]?: RuxIconSettingsInputHdmiAttributes[K] } & { [K in keyof RuxIconSettingsInputHdmi & keyof RuxIconSettingsInputHdmiAttributes as `prop:${K}`]?: RuxIconSettingsInputHdmi[K] }; "rux-icon-settings-input-svideo": Omit & { [K in keyof RuxIconSettingsInputSvideo & keyof RuxIconSettingsInputSvideoAttributes]?: RuxIconSettingsInputSvideo[K] } & { [K in keyof RuxIconSettingsInputSvideo & keyof RuxIconSettingsInputSvideoAttributes as `attr:${K}`]?: RuxIconSettingsInputSvideoAttributes[K] } & { [K in keyof RuxIconSettingsInputSvideo & keyof RuxIconSettingsInputSvideoAttributes as `prop:${K}`]?: RuxIconSettingsInputSvideo[K] }; "rux-icon-settings-overscan": Omit & { [K in keyof RuxIconSettingsOverscan & keyof RuxIconSettingsOverscanAttributes]?: RuxIconSettingsOverscan[K] } & { [K in keyof RuxIconSettingsOverscan & keyof RuxIconSettingsOverscanAttributes as `attr:${K}`]?: RuxIconSettingsOverscanAttributes[K] } & { [K in keyof RuxIconSettingsOverscan & keyof RuxIconSettingsOverscanAttributes as `prop:${K}`]?: RuxIconSettingsOverscan[K] }; "rux-icon-settings-phone": Omit & { [K in keyof RuxIconSettingsPhone & keyof RuxIconSettingsPhoneAttributes]?: RuxIconSettingsPhone[K] } & { [K in keyof RuxIconSettingsPhone & keyof RuxIconSettingsPhoneAttributes as `attr:${K}`]?: RuxIconSettingsPhoneAttributes[K] } & { [K in keyof RuxIconSettingsPhone & keyof RuxIconSettingsPhoneAttributes as `prop:${K}`]?: RuxIconSettingsPhone[K] }; "rux-icon-settings-power": Omit & { [K in keyof RuxIconSettingsPower & keyof RuxIconSettingsPowerAttributes]?: RuxIconSettingsPower[K] } & { [K in keyof RuxIconSettingsPower & keyof RuxIconSettingsPowerAttributes as `attr:${K}`]?: RuxIconSettingsPowerAttributes[K] } & { [K in keyof RuxIconSettingsPower & keyof RuxIconSettingsPowerAttributes as `prop:${K}`]?: RuxIconSettingsPower[K] }; "rux-icon-settings-remote": Omit & { [K in keyof RuxIconSettingsRemote & keyof RuxIconSettingsRemoteAttributes]?: RuxIconSettingsRemote[K] } & { [K in keyof RuxIconSettingsRemote & keyof RuxIconSettingsRemoteAttributes as `attr:${K}`]?: RuxIconSettingsRemoteAttributes[K] } & { [K in keyof RuxIconSettingsRemote & keyof RuxIconSettingsRemoteAttributes as `prop:${K}`]?: RuxIconSettingsRemote[K] }; "rux-icon-settings-system-daydream": Omit & { [K in keyof RuxIconSettingsSystemDaydream & keyof RuxIconSettingsSystemDaydreamAttributes]?: RuxIconSettingsSystemDaydream[K] } & { [K in keyof RuxIconSettingsSystemDaydream & keyof RuxIconSettingsSystemDaydreamAttributes as `attr:${K}`]?: RuxIconSettingsSystemDaydreamAttributes[K] } & { [K in keyof RuxIconSettingsSystemDaydream & keyof RuxIconSettingsSystemDaydreamAttributes as `prop:${K}`]?: RuxIconSettingsSystemDaydream[K] }; "rux-icon-settings-voice": Omit & { [K in keyof RuxIconSettingsVoice & keyof RuxIconSettingsVoiceAttributes]?: RuxIconSettingsVoice[K] } & { [K in keyof RuxIconSettingsVoice & keyof RuxIconSettingsVoiceAttributes as `attr:${K}`]?: RuxIconSettingsVoiceAttributes[K] } & { [K in keyof RuxIconSettingsVoice & keyof RuxIconSettingsVoiceAttributes as `prop:${K}`]?: RuxIconSettingsVoice[K] }; "rux-icon-share": Omit & { [K in keyof RuxIconShare & keyof RuxIconShareAttributes]?: RuxIconShare[K] } & { [K in keyof RuxIconShare & keyof RuxIconShareAttributes as `attr:${K}`]?: RuxIconShareAttributes[K] } & { [K in keyof RuxIconShare & keyof RuxIconShareAttributes as `prop:${K}`]?: RuxIconShare[K] }; "rux-icon-shop": Omit & { [K in keyof RuxIconShop & keyof RuxIconShopAttributes]?: RuxIconShop[K] } & { [K in keyof RuxIconShop & keyof RuxIconShopAttributes as `attr:${K}`]?: RuxIconShopAttributes[K] } & { [K in keyof RuxIconShop & keyof RuxIconShopAttributes as `prop:${K}`]?: RuxIconShop[K] }; "rux-icon-shop-two": Omit & { [K in keyof RuxIconShopTwo & keyof RuxIconShopTwoAttributes]?: RuxIconShopTwo[K] } & { [K in keyof RuxIconShopTwo & keyof RuxIconShopTwoAttributes as `attr:${K}`]?: RuxIconShopTwoAttributes[K] } & { [K in keyof RuxIconShopTwo & keyof RuxIconShopTwoAttributes as `prop:${K}`]?: RuxIconShopTwo[K] }; "rux-icon-shopping-basket": Omit & { [K in keyof RuxIconShoppingBasket & keyof RuxIconShoppingBasketAttributes]?: RuxIconShoppingBasket[K] } & { [K in keyof RuxIconShoppingBasket & keyof RuxIconShoppingBasketAttributes as `attr:${K}`]?: RuxIconShoppingBasketAttributes[K] } & { [K in keyof RuxIconShoppingBasket & keyof RuxIconShoppingBasketAttributes as `prop:${K}`]?: RuxIconShoppingBasket[K] }; "rux-icon-shopping-cart": Omit & { [K in keyof RuxIconShoppingCart & keyof RuxIconShoppingCartAttributes]?: RuxIconShoppingCart[K] } & { [K in keyof RuxIconShoppingCart & keyof RuxIconShoppingCartAttributes as `attr:${K}`]?: RuxIconShoppingCartAttributes[K] } & { [K in keyof RuxIconShoppingCart & keyof RuxIconShoppingCartAttributes as `prop:${K}`]?: RuxIconShoppingCart[K] }; "rux-icon-short-text": Omit & { [K in keyof RuxIconShortText & keyof RuxIconShortTextAttributes]?: RuxIconShortText[K] } & { [K in keyof RuxIconShortText & keyof RuxIconShortTextAttributes as `attr:${K}`]?: RuxIconShortTextAttributes[K] } & { [K in keyof RuxIconShortText & keyof RuxIconShortTextAttributes as `prop:${K}`]?: RuxIconShortText[K] }; "rux-icon-show-chart": Omit & { [K in keyof RuxIconShowChart & keyof RuxIconShowChartAttributes]?: RuxIconShowChart[K] } & { [K in keyof RuxIconShowChart & keyof RuxIconShowChartAttributes as `attr:${K}`]?: RuxIconShowChartAttributes[K] } & { [K in keyof RuxIconShowChart & keyof RuxIconShowChartAttributes as `prop:${K}`]?: RuxIconShowChart[K] }; "rux-icon-shuffle": Omit & { [K in keyof RuxIconShuffle & keyof RuxIconShuffleAttributes]?: RuxIconShuffle[K] } & { [K in keyof RuxIconShuffle & keyof RuxIconShuffleAttributes as `attr:${K}`]?: RuxIconShuffleAttributes[K] } & { [K in keyof RuxIconShuffle & keyof RuxIconShuffleAttributes as `prop:${K}`]?: RuxIconShuffle[K] }; "rux-icon-shutter-speed": Omit & { [K in keyof RuxIconShutterSpeed & keyof RuxIconShutterSpeedAttributes]?: RuxIconShutterSpeed[K] } & { [K in keyof RuxIconShutterSpeed & keyof RuxIconShutterSpeedAttributes as `attr:${K}`]?: RuxIconShutterSpeedAttributes[K] } & { [K in keyof RuxIconShutterSpeed & keyof RuxIconShutterSpeedAttributes as `prop:${K}`]?: RuxIconShutterSpeed[K] }; "rux-icon-signal-cellular-0-bar": Omit & { [K in keyof RuxIconSignalCellular0Bar & keyof RuxIconSignalCellular0BarAttributes]?: RuxIconSignalCellular0Bar[K] } & { [K in keyof RuxIconSignalCellular0Bar & keyof RuxIconSignalCellular0BarAttributes as `attr:${K}`]?: RuxIconSignalCellular0BarAttributes[K] } & { [K in keyof RuxIconSignalCellular0Bar & keyof RuxIconSignalCellular0BarAttributes as `prop:${K}`]?: RuxIconSignalCellular0Bar[K] }; "rux-icon-signal-cellular-1-bar": Omit & { [K in keyof RuxIconSignalCellular1Bar & keyof RuxIconSignalCellular1BarAttributes]?: RuxIconSignalCellular1Bar[K] } & { [K in keyof RuxIconSignalCellular1Bar & keyof RuxIconSignalCellular1BarAttributes as `attr:${K}`]?: RuxIconSignalCellular1BarAttributes[K] } & { [K in keyof RuxIconSignalCellular1Bar & keyof RuxIconSignalCellular1BarAttributes as `prop:${K}`]?: RuxIconSignalCellular1Bar[K] }; "rux-icon-signal-cellular-2-bar": Omit & { [K in keyof RuxIconSignalCellular2Bar & keyof RuxIconSignalCellular2BarAttributes]?: RuxIconSignalCellular2Bar[K] } & { [K in keyof RuxIconSignalCellular2Bar & keyof RuxIconSignalCellular2BarAttributes as `attr:${K}`]?: RuxIconSignalCellular2BarAttributes[K] } & { [K in keyof RuxIconSignalCellular2Bar & keyof RuxIconSignalCellular2BarAttributes as `prop:${K}`]?: RuxIconSignalCellular2Bar[K] }; "rux-icon-signal-cellular-3-bar": Omit & { [K in keyof RuxIconSignalCellular3Bar & keyof RuxIconSignalCellular3BarAttributes]?: RuxIconSignalCellular3Bar[K] } & { [K in keyof RuxIconSignalCellular3Bar & keyof RuxIconSignalCellular3BarAttributes as `attr:${K}`]?: RuxIconSignalCellular3BarAttributes[K] } & { [K in keyof RuxIconSignalCellular3Bar & keyof RuxIconSignalCellular3BarAttributes as `prop:${K}`]?: RuxIconSignalCellular3Bar[K] }; "rux-icon-signal-cellular-4-bar": Omit & { [K in keyof RuxIconSignalCellular4Bar & keyof RuxIconSignalCellular4BarAttributes]?: RuxIconSignalCellular4Bar[K] } & { [K in keyof RuxIconSignalCellular4Bar & keyof RuxIconSignalCellular4BarAttributes as `attr:${K}`]?: RuxIconSignalCellular4BarAttributes[K] } & { [K in keyof RuxIconSignalCellular4Bar & keyof RuxIconSignalCellular4BarAttributes as `prop:${K}`]?: RuxIconSignalCellular4Bar[K] }; "rux-icon-signal-cellular-alt": Omit & { [K in keyof RuxIconSignalCellularAlt & keyof RuxIconSignalCellularAltAttributes]?: RuxIconSignalCellularAlt[K] } & { [K in keyof RuxIconSignalCellularAlt & keyof RuxIconSignalCellularAltAttributes as `attr:${K}`]?: RuxIconSignalCellularAltAttributes[K] } & { [K in keyof RuxIconSignalCellularAlt & keyof RuxIconSignalCellularAltAttributes as `prop:${K}`]?: RuxIconSignalCellularAlt[K] }; "rux-icon-signal-cellular-connected-no-internet-0-bar": Omit & { [K in keyof RuxIconSignalCellularConnectedNoInternet0Bar & keyof RuxIconSignalCellularConnectedNoInternet0BarAttributes]?: RuxIconSignalCellularConnectedNoInternet0Bar[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet0Bar & keyof RuxIconSignalCellularConnectedNoInternet0BarAttributes as `attr:${K}`]?: RuxIconSignalCellularConnectedNoInternet0BarAttributes[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet0Bar & keyof RuxIconSignalCellularConnectedNoInternet0BarAttributes as `prop:${K}`]?: RuxIconSignalCellularConnectedNoInternet0Bar[K] }; "rux-icon-signal-cellular-connected-no-internet-1-bar": Omit & { [K in keyof RuxIconSignalCellularConnectedNoInternet1Bar & keyof RuxIconSignalCellularConnectedNoInternet1BarAttributes]?: RuxIconSignalCellularConnectedNoInternet1Bar[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet1Bar & keyof RuxIconSignalCellularConnectedNoInternet1BarAttributes as `attr:${K}`]?: RuxIconSignalCellularConnectedNoInternet1BarAttributes[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet1Bar & keyof RuxIconSignalCellularConnectedNoInternet1BarAttributes as `prop:${K}`]?: RuxIconSignalCellularConnectedNoInternet1Bar[K] }; "rux-icon-signal-cellular-connected-no-internet-2-bar": Omit & { [K in keyof RuxIconSignalCellularConnectedNoInternet2Bar & keyof RuxIconSignalCellularConnectedNoInternet2BarAttributes]?: RuxIconSignalCellularConnectedNoInternet2Bar[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet2Bar & keyof RuxIconSignalCellularConnectedNoInternet2BarAttributes as `attr:${K}`]?: RuxIconSignalCellularConnectedNoInternet2BarAttributes[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet2Bar & keyof RuxIconSignalCellularConnectedNoInternet2BarAttributes as `prop:${K}`]?: RuxIconSignalCellularConnectedNoInternet2Bar[K] }; "rux-icon-signal-cellular-connected-no-internet-3-bar": Omit & { [K in keyof RuxIconSignalCellularConnectedNoInternet3Bar & keyof RuxIconSignalCellularConnectedNoInternet3BarAttributes]?: RuxIconSignalCellularConnectedNoInternet3Bar[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet3Bar & keyof RuxIconSignalCellularConnectedNoInternet3BarAttributes as `attr:${K}`]?: RuxIconSignalCellularConnectedNoInternet3BarAttributes[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet3Bar & keyof RuxIconSignalCellularConnectedNoInternet3BarAttributes as `prop:${K}`]?: RuxIconSignalCellularConnectedNoInternet3Bar[K] }; "rux-icon-signal-cellular-connected-no-internet-4-bar": Omit & { [K in keyof RuxIconSignalCellularConnectedNoInternet4Bar & keyof RuxIconSignalCellularConnectedNoInternet4BarAttributes]?: RuxIconSignalCellularConnectedNoInternet4Bar[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet4Bar & keyof RuxIconSignalCellularConnectedNoInternet4BarAttributes as `attr:${K}`]?: RuxIconSignalCellularConnectedNoInternet4BarAttributes[K] } & { [K in keyof RuxIconSignalCellularConnectedNoInternet4Bar & keyof RuxIconSignalCellularConnectedNoInternet4BarAttributes as `prop:${K}`]?: RuxIconSignalCellularConnectedNoInternet4Bar[K] }; "rux-icon-signal-cellular-no-sim": Omit & { [K in keyof RuxIconSignalCellularNoSim & keyof RuxIconSignalCellularNoSimAttributes]?: RuxIconSignalCellularNoSim[K] } & { [K in keyof RuxIconSignalCellularNoSim & keyof RuxIconSignalCellularNoSimAttributes as `attr:${K}`]?: RuxIconSignalCellularNoSimAttributes[K] } & { [K in keyof RuxIconSignalCellularNoSim & keyof RuxIconSignalCellularNoSimAttributes as `prop:${K}`]?: RuxIconSignalCellularNoSim[K] }; "rux-icon-signal-cellular-null": Omit & { [K in keyof RuxIconSignalCellularNull & keyof RuxIconSignalCellularNullAttributes]?: RuxIconSignalCellularNull[K] } & { [K in keyof RuxIconSignalCellularNull & keyof RuxIconSignalCellularNullAttributes as `attr:${K}`]?: RuxIconSignalCellularNullAttributes[K] } & { [K in keyof RuxIconSignalCellularNull & keyof RuxIconSignalCellularNullAttributes as `prop:${K}`]?: RuxIconSignalCellularNull[K] }; "rux-icon-signal-cellular-off": Omit & { [K in keyof RuxIconSignalCellularOff & keyof RuxIconSignalCellularOffAttributes]?: RuxIconSignalCellularOff[K] } & { [K in keyof RuxIconSignalCellularOff & keyof RuxIconSignalCellularOffAttributes as `attr:${K}`]?: RuxIconSignalCellularOffAttributes[K] } & { [K in keyof RuxIconSignalCellularOff & keyof RuxIconSignalCellularOffAttributes as `prop:${K}`]?: RuxIconSignalCellularOff[K] }; "rux-icon-signal-wifi-0-bar": Omit & { [K in keyof RuxIconSignalWifi0Bar & keyof RuxIconSignalWifi0BarAttributes]?: RuxIconSignalWifi0Bar[K] } & { [K in keyof RuxIconSignalWifi0Bar & keyof RuxIconSignalWifi0BarAttributes as `attr:${K}`]?: RuxIconSignalWifi0BarAttributes[K] } & { [K in keyof RuxIconSignalWifi0Bar & keyof RuxIconSignalWifi0BarAttributes as `prop:${K}`]?: RuxIconSignalWifi0Bar[K] }; "rux-icon-signal-wifi-1-bar": Omit & { [K in keyof RuxIconSignalWifi1Bar & keyof RuxIconSignalWifi1BarAttributes]?: RuxIconSignalWifi1Bar[K] } & { [K in keyof RuxIconSignalWifi1Bar & keyof RuxIconSignalWifi1BarAttributes as `attr:${K}`]?: RuxIconSignalWifi1BarAttributes[K] } & { [K in keyof RuxIconSignalWifi1Bar & keyof RuxIconSignalWifi1BarAttributes as `prop:${K}`]?: RuxIconSignalWifi1Bar[K] }; "rux-icon-signal-wifi-1-bar-lock": Omit & { [K in keyof RuxIconSignalWifi1BarLock & keyof RuxIconSignalWifi1BarLockAttributes]?: RuxIconSignalWifi1BarLock[K] } & { [K in keyof RuxIconSignalWifi1BarLock & keyof RuxIconSignalWifi1BarLockAttributes as `attr:${K}`]?: RuxIconSignalWifi1BarLockAttributes[K] } & { [K in keyof RuxIconSignalWifi1BarLock & keyof RuxIconSignalWifi1BarLockAttributes as `prop:${K}`]?: RuxIconSignalWifi1BarLock[K] }; "rux-icon-signal-wifi-2-bar": Omit & { [K in keyof RuxIconSignalWifi2Bar & keyof RuxIconSignalWifi2BarAttributes]?: RuxIconSignalWifi2Bar[K] } & { [K in keyof RuxIconSignalWifi2Bar & keyof RuxIconSignalWifi2BarAttributes as `attr:${K}`]?: RuxIconSignalWifi2BarAttributes[K] } & { [K in keyof RuxIconSignalWifi2Bar & keyof RuxIconSignalWifi2BarAttributes as `prop:${K}`]?: RuxIconSignalWifi2Bar[K] }; "rux-icon-signal-wifi-2-bar-lock": Omit & { [K in keyof RuxIconSignalWifi2BarLock & keyof RuxIconSignalWifi2BarLockAttributes]?: RuxIconSignalWifi2BarLock[K] } & { [K in keyof RuxIconSignalWifi2BarLock & keyof RuxIconSignalWifi2BarLockAttributes as `attr:${K}`]?: RuxIconSignalWifi2BarLockAttributes[K] } & { [K in keyof RuxIconSignalWifi2BarLock & keyof RuxIconSignalWifi2BarLockAttributes as `prop:${K}`]?: RuxIconSignalWifi2BarLock[K] }; "rux-icon-signal-wifi-3-bar": Omit & { [K in keyof RuxIconSignalWifi3Bar & keyof RuxIconSignalWifi3BarAttributes]?: RuxIconSignalWifi3Bar[K] } & { [K in keyof RuxIconSignalWifi3Bar & keyof RuxIconSignalWifi3BarAttributes as `attr:${K}`]?: RuxIconSignalWifi3BarAttributes[K] } & { [K in keyof RuxIconSignalWifi3Bar & keyof RuxIconSignalWifi3BarAttributes as `prop:${K}`]?: RuxIconSignalWifi3Bar[K] }; "rux-icon-signal-wifi-3-bar-lock": Omit & { [K in keyof RuxIconSignalWifi3BarLock & keyof RuxIconSignalWifi3BarLockAttributes]?: RuxIconSignalWifi3BarLock[K] } & { [K in keyof RuxIconSignalWifi3BarLock & keyof RuxIconSignalWifi3BarLockAttributes as `attr:${K}`]?: RuxIconSignalWifi3BarLockAttributes[K] } & { [K in keyof RuxIconSignalWifi3BarLock & keyof RuxIconSignalWifi3BarLockAttributes as `prop:${K}`]?: RuxIconSignalWifi3BarLock[K] }; "rux-icon-signal-wifi-4-bar": Omit & { [K in keyof RuxIconSignalWifi4Bar & keyof RuxIconSignalWifi4BarAttributes]?: RuxIconSignalWifi4Bar[K] } & { [K in keyof RuxIconSignalWifi4Bar & keyof RuxIconSignalWifi4BarAttributes as `attr:${K}`]?: RuxIconSignalWifi4BarAttributes[K] } & { [K in keyof RuxIconSignalWifi4Bar & keyof RuxIconSignalWifi4BarAttributes as `prop:${K}`]?: RuxIconSignalWifi4Bar[K] }; "rux-icon-signal-wifi-4-bar-lock": Omit & { [K in keyof RuxIconSignalWifi4BarLock & keyof RuxIconSignalWifi4BarLockAttributes]?: RuxIconSignalWifi4BarLock[K] } & { [K in keyof RuxIconSignalWifi4BarLock & keyof RuxIconSignalWifi4BarLockAttributes as `attr:${K}`]?: RuxIconSignalWifi4BarLockAttributes[K] } & { [K in keyof RuxIconSignalWifi4BarLock & keyof RuxIconSignalWifi4BarLockAttributes as `prop:${K}`]?: RuxIconSignalWifi4BarLock[K] }; "rux-icon-signal-wifi-off": Omit & { [K in keyof RuxIconSignalWifiOff & keyof RuxIconSignalWifiOffAttributes]?: RuxIconSignalWifiOff[K] } & { [K in keyof RuxIconSignalWifiOff & keyof RuxIconSignalWifiOffAttributes as `attr:${K}`]?: RuxIconSignalWifiOffAttributes[K] } & { [K in keyof RuxIconSignalWifiOff & keyof RuxIconSignalWifiOffAttributes as `prop:${K}`]?: RuxIconSignalWifiOff[K] }; "rux-icon-sim-card": Omit & { [K in keyof RuxIconSimCard & keyof RuxIconSimCardAttributes]?: RuxIconSimCard[K] } & { [K in keyof RuxIconSimCard & keyof RuxIconSimCardAttributes as `attr:${K}`]?: RuxIconSimCardAttributes[K] } & { [K in keyof RuxIconSimCard & keyof RuxIconSimCardAttributes as `prop:${K}`]?: RuxIconSimCard[K] }; "rux-icon-skip-next": Omit & { [K in keyof RuxIconSkipNext & keyof RuxIconSkipNextAttributes]?: RuxIconSkipNext[K] } & { [K in keyof RuxIconSkipNext & keyof RuxIconSkipNextAttributes as `attr:${K}`]?: RuxIconSkipNextAttributes[K] } & { [K in keyof RuxIconSkipNext & keyof RuxIconSkipNextAttributes as `prop:${K}`]?: RuxIconSkipNext[K] }; "rux-icon-skip-previous": Omit & { [K in keyof RuxIconSkipPrevious & keyof RuxIconSkipPreviousAttributes]?: RuxIconSkipPrevious[K] } & { [K in keyof RuxIconSkipPrevious & keyof RuxIconSkipPreviousAttributes as `attr:${K}`]?: RuxIconSkipPreviousAttributes[K] } & { [K in keyof RuxIconSkipPrevious & keyof RuxIconSkipPreviousAttributes as `prop:${K}`]?: RuxIconSkipPrevious[K] }; "rux-icon-slideshow": Omit & { [K in keyof RuxIconSlideshow & keyof RuxIconSlideshowAttributes]?: RuxIconSlideshow[K] } & { [K in keyof RuxIconSlideshow & keyof RuxIconSlideshowAttributes as `attr:${K}`]?: RuxIconSlideshowAttributes[K] } & { [K in keyof RuxIconSlideshow & keyof RuxIconSlideshowAttributes as `prop:${K}`]?: RuxIconSlideshow[K] }; "rux-icon-slow-motion-video": Omit & { [K in keyof RuxIconSlowMotionVideo & keyof RuxIconSlowMotionVideoAttributes]?: RuxIconSlowMotionVideo[K] } & { [K in keyof RuxIconSlowMotionVideo & keyof RuxIconSlowMotionVideoAttributes as `attr:${K}`]?: RuxIconSlowMotionVideoAttributes[K] } & { [K in keyof RuxIconSlowMotionVideo & keyof RuxIconSlowMotionVideoAttributes as `prop:${K}`]?: RuxIconSlowMotionVideo[K] }; "rux-icon-smartphone": Omit & { [K in keyof RuxIconSmartphone & keyof RuxIconSmartphoneAttributes]?: RuxIconSmartphone[K] } & { [K in keyof RuxIconSmartphone & keyof RuxIconSmartphoneAttributes as `attr:${K}`]?: RuxIconSmartphoneAttributes[K] } & { [K in keyof RuxIconSmartphone & keyof RuxIconSmartphoneAttributes as `prop:${K}`]?: RuxIconSmartphone[K] }; "rux-icon-smoke-free": Omit & { [K in keyof RuxIconSmokeFree & keyof RuxIconSmokeFreeAttributes]?: RuxIconSmokeFree[K] } & { [K in keyof RuxIconSmokeFree & keyof RuxIconSmokeFreeAttributes as `attr:${K}`]?: RuxIconSmokeFreeAttributes[K] } & { [K in keyof RuxIconSmokeFree & keyof RuxIconSmokeFreeAttributes as `prop:${K}`]?: RuxIconSmokeFree[K] }; "rux-icon-smoking-rooms": Omit & { [K in keyof RuxIconSmokingRooms & keyof RuxIconSmokingRoomsAttributes]?: RuxIconSmokingRooms[K] } & { [K in keyof RuxIconSmokingRooms & keyof RuxIconSmokingRoomsAttributes as `attr:${K}`]?: RuxIconSmokingRoomsAttributes[K] } & { [K in keyof RuxIconSmokingRooms & keyof RuxIconSmokingRoomsAttributes as `prop:${K}`]?: RuxIconSmokingRooms[K] }; "rux-icon-sms": Omit & { [K in keyof RuxIconSms & keyof RuxIconSmsAttributes]?: RuxIconSms[K] } & { [K in keyof RuxIconSms & keyof RuxIconSmsAttributes as `attr:${K}`]?: RuxIconSmsAttributes[K] } & { [K in keyof RuxIconSms & keyof RuxIconSmsAttributes as `prop:${K}`]?: RuxIconSms[K] }; "rux-icon-sms-failed": Omit & { [K in keyof RuxIconSmsFailed & keyof RuxIconSmsFailedAttributes]?: RuxIconSmsFailed[K] } & { [K in keyof RuxIconSmsFailed & keyof RuxIconSmsFailedAttributes as `attr:${K}`]?: RuxIconSmsFailedAttributes[K] } & { [K in keyof RuxIconSmsFailed & keyof RuxIconSmsFailedAttributes as `prop:${K}`]?: RuxIconSmsFailed[K] }; "rux-icon-snooze": Omit & { [K in keyof RuxIconSnooze & keyof RuxIconSnoozeAttributes]?: RuxIconSnooze[K] } & { [K in keyof RuxIconSnooze & keyof RuxIconSnoozeAttributes as `attr:${K}`]?: RuxIconSnoozeAttributes[K] } & { [K in keyof RuxIconSnooze & keyof RuxIconSnoozeAttributes as `prop:${K}`]?: RuxIconSnooze[K] }; "rux-icon-solar": Omit & { [K in keyof RuxIconSolar & keyof RuxIconSolarAttributes]?: RuxIconSolar[K] } & { [K in keyof RuxIconSolar & keyof RuxIconSolarAttributes as `attr:${K}`]?: RuxIconSolarAttributes[K] } & { [K in keyof RuxIconSolar & keyof RuxIconSolarAttributes as `prop:${K}`]?: RuxIconSolar[K] }; "rux-icon-sort": Omit & { [K in keyof RuxIconSort & keyof RuxIconSortAttributes]?: RuxIconSort[K] } & { [K in keyof RuxIconSort & keyof RuxIconSortAttributes as `attr:${K}`]?: RuxIconSortAttributes[K] } & { [K in keyof RuxIconSort & keyof RuxIconSortAttributes as `prop:${K}`]?: RuxIconSort[K] }; "rux-icon-sort-by-alpha": Omit & { [K in keyof RuxIconSortByAlpha & keyof RuxIconSortByAlphaAttributes]?: RuxIconSortByAlpha[K] } & { [K in keyof RuxIconSortByAlpha & keyof RuxIconSortByAlphaAttributes as `attr:${K}`]?: RuxIconSortByAlphaAttributes[K] } & { [K in keyof RuxIconSortByAlpha & keyof RuxIconSortByAlphaAttributes as `prop:${K}`]?: RuxIconSortByAlpha[K] }; "rux-icon-spa": Omit & { [K in keyof RuxIconSpa & keyof RuxIconSpaAttributes]?: RuxIconSpa[K] } & { [K in keyof RuxIconSpa & keyof RuxIconSpaAttributes as `attr:${K}`]?: RuxIconSpaAttributes[K] } & { [K in keyof RuxIconSpa & keyof RuxIconSpaAttributes as `prop:${K}`]?: RuxIconSpa[K] }; "rux-icon-space-bar": Omit & { [K in keyof RuxIconSpaceBar & keyof RuxIconSpaceBarAttributes]?: RuxIconSpaceBar[K] } & { [K in keyof RuxIconSpaceBar & keyof RuxIconSpaceBarAttributes as `attr:${K}`]?: RuxIconSpaceBarAttributes[K] } & { [K in keyof RuxIconSpaceBar & keyof RuxIconSpaceBarAttributes as `prop:${K}`]?: RuxIconSpaceBar[K] }; "rux-icon-speaker": Omit & { [K in keyof RuxIconSpeaker & keyof RuxIconSpeakerAttributes]?: RuxIconSpeaker[K] } & { [K in keyof RuxIconSpeaker & keyof RuxIconSpeakerAttributes as `attr:${K}`]?: RuxIconSpeakerAttributes[K] } & { [K in keyof RuxIconSpeaker & keyof RuxIconSpeakerAttributes as `prop:${K}`]?: RuxIconSpeaker[K] }; "rux-icon-speaker-group": Omit & { [K in keyof RuxIconSpeakerGroup & keyof RuxIconSpeakerGroupAttributes]?: RuxIconSpeakerGroup[K] } & { [K in keyof RuxIconSpeakerGroup & keyof RuxIconSpeakerGroupAttributes as `attr:${K}`]?: RuxIconSpeakerGroupAttributes[K] } & { [K in keyof RuxIconSpeakerGroup & keyof RuxIconSpeakerGroupAttributes as `prop:${K}`]?: RuxIconSpeakerGroup[K] }; "rux-icon-speaker-notes": Omit & { [K in keyof RuxIconSpeakerNotes & keyof RuxIconSpeakerNotesAttributes]?: RuxIconSpeakerNotes[K] } & { [K in keyof RuxIconSpeakerNotes & keyof RuxIconSpeakerNotesAttributes as `attr:${K}`]?: RuxIconSpeakerNotesAttributes[K] } & { [K in keyof RuxIconSpeakerNotes & keyof RuxIconSpeakerNotesAttributes as `prop:${K}`]?: RuxIconSpeakerNotes[K] }; "rux-icon-speaker-notes-off": Omit & { [K in keyof RuxIconSpeakerNotesOff & keyof RuxIconSpeakerNotesOffAttributes]?: RuxIconSpeakerNotesOff[K] } & { [K in keyof RuxIconSpeakerNotesOff & keyof RuxIconSpeakerNotesOffAttributes as `attr:${K}`]?: RuxIconSpeakerNotesOffAttributes[K] } & { [K in keyof RuxIconSpeakerNotesOff & keyof RuxIconSpeakerNotesOffAttributes as `prop:${K}`]?: RuxIconSpeakerNotesOff[K] }; "rux-icon-speaker-phone": Omit & { [K in keyof RuxIconSpeakerPhone & keyof RuxIconSpeakerPhoneAttributes]?: RuxIconSpeakerPhone[K] } & { [K in keyof RuxIconSpeakerPhone & keyof RuxIconSpeakerPhoneAttributes as `attr:${K}`]?: RuxIconSpeakerPhoneAttributes[K] } & { [K in keyof RuxIconSpeakerPhone & keyof RuxIconSpeakerPhoneAttributes as `prop:${K}`]?: RuxIconSpeakerPhone[K] }; "rux-icon-spellcheck": Omit & { [K in keyof RuxIconSpellcheck & keyof RuxIconSpellcheckAttributes]?: RuxIconSpellcheck[K] } & { [K in keyof RuxIconSpellcheck & keyof RuxIconSpellcheckAttributes as `attr:${K}`]?: RuxIconSpellcheckAttributes[K] } & { [K in keyof RuxIconSpellcheck & keyof RuxIconSpellcheckAttributes as `prop:${K}`]?: RuxIconSpellcheck[K] }; "rux-icon-star": Omit & { [K in keyof RuxIconStar & keyof RuxIconStarAttributes]?: RuxIconStar[K] } & { [K in keyof RuxIconStar & keyof RuxIconStarAttributes as `attr:${K}`]?: RuxIconStarAttributes[K] } & { [K in keyof RuxIconStar & keyof RuxIconStarAttributes as `prop:${K}`]?: RuxIconStar[K] }; "rux-icon-star-border": Omit & { [K in keyof RuxIconStarBorder & keyof RuxIconStarBorderAttributes]?: RuxIconStarBorder[K] } & { [K in keyof RuxIconStarBorder & keyof RuxIconStarBorderAttributes as `attr:${K}`]?: RuxIconStarBorderAttributes[K] } & { [K in keyof RuxIconStarBorder & keyof RuxIconStarBorderAttributes as `prop:${K}`]?: RuxIconStarBorder[K] }; "rux-icon-star-half": Omit & { [K in keyof RuxIconStarHalf & keyof RuxIconStarHalfAttributes]?: RuxIconStarHalf[K] } & { [K in keyof RuxIconStarHalf & keyof RuxIconStarHalfAttributes as `attr:${K}`]?: RuxIconStarHalfAttributes[K] } & { [K in keyof RuxIconStarHalf & keyof RuxIconStarHalfAttributes as `prop:${K}`]?: RuxIconStarHalf[K] }; "rux-icon-star-rate": Omit & { [K in keyof RuxIconStarRate & keyof RuxIconStarRateAttributes]?: RuxIconStarRate[K] } & { [K in keyof RuxIconStarRate & keyof RuxIconStarRateAttributes as `attr:${K}`]?: RuxIconStarRateAttributes[K] } & { [K in keyof RuxIconStarRate & keyof RuxIconStarRateAttributes as `prop:${K}`]?: RuxIconStarRate[K] }; "rux-icon-stars": Omit & { [K in keyof RuxIconStars & keyof RuxIconStarsAttributes]?: RuxIconStars[K] } & { [K in keyof RuxIconStars & keyof RuxIconStarsAttributes as `attr:${K}`]?: RuxIconStarsAttributes[K] } & { [K in keyof RuxIconStars & keyof RuxIconStarsAttributes as `prop:${K}`]?: RuxIconStars[K] }; "rux-icon-stay-current-landscape": Omit & { [K in keyof RuxIconStayCurrentLandscape & keyof RuxIconStayCurrentLandscapeAttributes]?: RuxIconStayCurrentLandscape[K] } & { [K in keyof RuxIconStayCurrentLandscape & keyof RuxIconStayCurrentLandscapeAttributes as `attr:${K}`]?: RuxIconStayCurrentLandscapeAttributes[K] } & { [K in keyof RuxIconStayCurrentLandscape & keyof RuxIconStayCurrentLandscapeAttributes as `prop:${K}`]?: RuxIconStayCurrentLandscape[K] }; "rux-icon-stay-current-portrait": Omit & { [K in keyof RuxIconStayCurrentPortrait & keyof RuxIconStayCurrentPortraitAttributes]?: RuxIconStayCurrentPortrait[K] } & { [K in keyof RuxIconStayCurrentPortrait & keyof RuxIconStayCurrentPortraitAttributes as `attr:${K}`]?: RuxIconStayCurrentPortraitAttributes[K] } & { [K in keyof RuxIconStayCurrentPortrait & keyof RuxIconStayCurrentPortraitAttributes as `prop:${K}`]?: RuxIconStayCurrentPortrait[K] }; "rux-icon-stay-primary-landscape": Omit & { [K in keyof RuxIconStayPrimaryLandscape & keyof RuxIconStayPrimaryLandscapeAttributes]?: RuxIconStayPrimaryLandscape[K] } & { [K in keyof RuxIconStayPrimaryLandscape & keyof RuxIconStayPrimaryLandscapeAttributes as `attr:${K}`]?: RuxIconStayPrimaryLandscapeAttributes[K] } & { [K in keyof RuxIconStayPrimaryLandscape & keyof RuxIconStayPrimaryLandscapeAttributes as `prop:${K}`]?: RuxIconStayPrimaryLandscape[K] }; "rux-icon-stay-primary-portrait": Omit & { [K in keyof RuxIconStayPrimaryPortrait & keyof RuxIconStayPrimaryPortraitAttributes]?: RuxIconStayPrimaryPortrait[K] } & { [K in keyof RuxIconStayPrimaryPortrait & keyof RuxIconStayPrimaryPortraitAttributes as `attr:${K}`]?: RuxIconStayPrimaryPortraitAttributes[K] } & { [K in keyof RuxIconStayPrimaryPortrait & keyof RuxIconStayPrimaryPortraitAttributes as `prop:${K}`]?: RuxIconStayPrimaryPortrait[K] }; "rux-icon-stop": Omit & { [K in keyof RuxIconStop & keyof RuxIconStopAttributes]?: RuxIconStop[K] } & { [K in keyof RuxIconStop & keyof RuxIconStopAttributes as `attr:${K}`]?: RuxIconStopAttributes[K] } & { [K in keyof RuxIconStop & keyof RuxIconStopAttributes as `prop:${K}`]?: RuxIconStop[K] }; "rux-icon-stop-screen-share": Omit & { [K in keyof RuxIconStopScreenShare & keyof RuxIconStopScreenShareAttributes]?: RuxIconStopScreenShare[K] } & { [K in keyof RuxIconStopScreenShare & keyof RuxIconStopScreenShareAttributes as `attr:${K}`]?: RuxIconStopScreenShareAttributes[K] } & { [K in keyof RuxIconStopScreenShare & keyof RuxIconStopScreenShareAttributes as `prop:${K}`]?: RuxIconStopScreenShare[K] }; "rux-icon-storage": Omit & { [K in keyof RuxIconStorage & keyof RuxIconStorageAttributes]?: RuxIconStorage[K] } & { [K in keyof RuxIconStorage & keyof RuxIconStorageAttributes as `attr:${K}`]?: RuxIconStorageAttributes[K] } & { [K in keyof RuxIconStorage & keyof RuxIconStorageAttributes as `prop:${K}`]?: RuxIconStorage[K] }; "rux-icon-store": Omit & { [K in keyof RuxIconStore & keyof RuxIconStoreAttributes]?: RuxIconStore[K] } & { [K in keyof RuxIconStore & keyof RuxIconStoreAttributes as `attr:${K}`]?: RuxIconStoreAttributes[K] } & { [K in keyof RuxIconStore & keyof RuxIconStoreAttributes as `prop:${K}`]?: RuxIconStore[K] }; "rux-icon-store-mall-directory": Omit & { [K in keyof RuxIconStoreMallDirectory & keyof RuxIconStoreMallDirectoryAttributes]?: RuxIconStoreMallDirectory[K] } & { [K in keyof RuxIconStoreMallDirectory & keyof RuxIconStoreMallDirectoryAttributes as `attr:${K}`]?: RuxIconStoreMallDirectoryAttributes[K] } & { [K in keyof RuxIconStoreMallDirectory & keyof RuxIconStoreMallDirectoryAttributes as `prop:${K}`]?: RuxIconStoreMallDirectory[K] }; "rux-icon-straighten": Omit & { [K in keyof RuxIconStraighten & keyof RuxIconStraightenAttributes]?: RuxIconStraighten[K] } & { [K in keyof RuxIconStraighten & keyof RuxIconStraightenAttributes as `attr:${K}`]?: RuxIconStraightenAttributes[K] } & { [K in keyof RuxIconStraighten & keyof RuxIconStraightenAttributes as `prop:${K}`]?: RuxIconStraighten[K] }; "rux-icon-streetview": Omit & { [K in keyof RuxIconStreetview & keyof RuxIconStreetviewAttributes]?: RuxIconStreetview[K] } & { [K in keyof RuxIconStreetview & keyof RuxIconStreetviewAttributes as `attr:${K}`]?: RuxIconStreetviewAttributes[K] } & { [K in keyof RuxIconStreetview & keyof RuxIconStreetviewAttributes as `prop:${K}`]?: RuxIconStreetview[K] }; "rux-icon-strikethrough-s": Omit & { [K in keyof RuxIconStrikethroughS & keyof RuxIconStrikethroughSAttributes]?: RuxIconStrikethroughS[K] } & { [K in keyof RuxIconStrikethroughS & keyof RuxIconStrikethroughSAttributes as `attr:${K}`]?: RuxIconStrikethroughSAttributes[K] } & { [K in keyof RuxIconStrikethroughS & keyof RuxIconStrikethroughSAttributes as `prop:${K}`]?: RuxIconStrikethroughS[K] }; "rux-icon-style": Omit & { [K in keyof RuxIconStyle & keyof RuxIconStyleAttributes]?: RuxIconStyle[K] } & { [K in keyof RuxIconStyle & keyof RuxIconStyleAttributes as `attr:${K}`]?: RuxIconStyleAttributes[K] } & { [K in keyof RuxIconStyle & keyof RuxIconStyleAttributes as `prop:${K}`]?: RuxIconStyle[K] }; "rux-icon-subdirectory-arrow-left": Omit & { [K in keyof RuxIconSubdirectoryArrowLeft & keyof RuxIconSubdirectoryArrowLeftAttributes]?: RuxIconSubdirectoryArrowLeft[K] } & { [K in keyof RuxIconSubdirectoryArrowLeft & keyof RuxIconSubdirectoryArrowLeftAttributes as `attr:${K}`]?: RuxIconSubdirectoryArrowLeftAttributes[K] } & { [K in keyof RuxIconSubdirectoryArrowLeft & keyof RuxIconSubdirectoryArrowLeftAttributes as `prop:${K}`]?: RuxIconSubdirectoryArrowLeft[K] }; "rux-icon-subdirectory-arrow-right": Omit & { [K in keyof RuxIconSubdirectoryArrowRight & keyof RuxIconSubdirectoryArrowRightAttributes]?: RuxIconSubdirectoryArrowRight[K] } & { [K in keyof RuxIconSubdirectoryArrowRight & keyof RuxIconSubdirectoryArrowRightAttributes as `attr:${K}`]?: RuxIconSubdirectoryArrowRightAttributes[K] } & { [K in keyof RuxIconSubdirectoryArrowRight & keyof RuxIconSubdirectoryArrowRightAttributes as `prop:${K}`]?: RuxIconSubdirectoryArrowRight[K] }; "rux-icon-subject": Omit & { [K in keyof RuxIconSubject & keyof RuxIconSubjectAttributes]?: RuxIconSubject[K] } & { [K in keyof RuxIconSubject & keyof RuxIconSubjectAttributes as `attr:${K}`]?: RuxIconSubjectAttributes[K] } & { [K in keyof RuxIconSubject & keyof RuxIconSubjectAttributes as `prop:${K}`]?: RuxIconSubject[K] }; "rux-icon-subscriptions": Omit & { [K in keyof RuxIconSubscriptions & keyof RuxIconSubscriptionsAttributes]?: RuxIconSubscriptions[K] } & { [K in keyof RuxIconSubscriptions & keyof RuxIconSubscriptionsAttributes as `attr:${K}`]?: RuxIconSubscriptionsAttributes[K] } & { [K in keyof RuxIconSubscriptions & keyof RuxIconSubscriptionsAttributes as `prop:${K}`]?: RuxIconSubscriptions[K] }; "rux-icon-subtitles": Omit & { [K in keyof RuxIconSubtitles & keyof RuxIconSubtitlesAttributes]?: RuxIconSubtitles[K] } & { [K in keyof RuxIconSubtitles & keyof RuxIconSubtitlesAttributes as `attr:${K}`]?: RuxIconSubtitlesAttributes[K] } & { [K in keyof RuxIconSubtitles & keyof RuxIconSubtitlesAttributes as `prop:${K}`]?: RuxIconSubtitles[K] }; "rux-icon-subway": Omit & { [K in keyof RuxIconSubway & keyof RuxIconSubwayAttributes]?: RuxIconSubway[K] } & { [K in keyof RuxIconSubway & keyof RuxIconSubwayAttributes as `attr:${K}`]?: RuxIconSubwayAttributes[K] } & { [K in keyof RuxIconSubway & keyof RuxIconSubwayAttributes as `prop:${K}`]?: RuxIconSubway[K] }; "rux-icon-supervised-user-circle": Omit & { [K in keyof RuxIconSupervisedUserCircle & keyof RuxIconSupervisedUserCircleAttributes]?: RuxIconSupervisedUserCircle[K] } & { [K in keyof RuxIconSupervisedUserCircle & keyof RuxIconSupervisedUserCircleAttributes as `attr:${K}`]?: RuxIconSupervisedUserCircleAttributes[K] } & { [K in keyof RuxIconSupervisedUserCircle & keyof RuxIconSupervisedUserCircleAttributes as `prop:${K}`]?: RuxIconSupervisedUserCircle[K] }; "rux-icon-supervisor-account": Omit & { [K in keyof RuxIconSupervisorAccount & keyof RuxIconSupervisorAccountAttributes]?: RuxIconSupervisorAccount[K] } & { [K in keyof RuxIconSupervisorAccount & keyof RuxIconSupervisorAccountAttributes as `attr:${K}`]?: RuxIconSupervisorAccountAttributes[K] } & { [K in keyof RuxIconSupervisorAccount & keyof RuxIconSupervisorAccountAttributes as `prop:${K}`]?: RuxIconSupervisorAccount[K] }; "rux-icon-surround-sound": Omit & { [K in keyof RuxIconSurroundSound & keyof RuxIconSurroundSoundAttributes]?: RuxIconSurroundSound[K] } & { [K in keyof RuxIconSurroundSound & keyof RuxIconSurroundSoundAttributes as `attr:${K}`]?: RuxIconSurroundSoundAttributes[K] } & { [K in keyof RuxIconSurroundSound & keyof RuxIconSurroundSoundAttributes as `prop:${K}`]?: RuxIconSurroundSound[K] }; "rux-icon-swap-calls": Omit & { [K in keyof RuxIconSwapCalls & keyof RuxIconSwapCallsAttributes]?: RuxIconSwapCalls[K] } & { [K in keyof RuxIconSwapCalls & keyof RuxIconSwapCallsAttributes as `attr:${K}`]?: RuxIconSwapCallsAttributes[K] } & { [K in keyof RuxIconSwapCalls & keyof RuxIconSwapCallsAttributes as `prop:${K}`]?: RuxIconSwapCalls[K] }; "rux-icon-swap-horiz": Omit & { [K in keyof RuxIconSwapHoriz & keyof RuxIconSwapHorizAttributes]?: RuxIconSwapHoriz[K] } & { [K in keyof RuxIconSwapHoriz & keyof RuxIconSwapHorizAttributes as `attr:${K}`]?: RuxIconSwapHorizAttributes[K] } & { [K in keyof RuxIconSwapHoriz & keyof RuxIconSwapHorizAttributes as `prop:${K}`]?: RuxIconSwapHoriz[K] }; "rux-icon-swap-horizontal-circle": Omit & { [K in keyof RuxIconSwapHorizontalCircle & keyof RuxIconSwapHorizontalCircleAttributes]?: RuxIconSwapHorizontalCircle[K] } & { [K in keyof RuxIconSwapHorizontalCircle & keyof RuxIconSwapHorizontalCircleAttributes as `attr:${K}`]?: RuxIconSwapHorizontalCircleAttributes[K] } & { [K in keyof RuxIconSwapHorizontalCircle & keyof RuxIconSwapHorizontalCircleAttributes as `prop:${K}`]?: RuxIconSwapHorizontalCircle[K] }; "rux-icon-swap-vert": Omit & { [K in keyof RuxIconSwapVert & keyof RuxIconSwapVertAttributes]?: RuxIconSwapVert[K] } & { [K in keyof RuxIconSwapVert & keyof RuxIconSwapVertAttributes as `attr:${K}`]?: RuxIconSwapVertAttributes[K] } & { [K in keyof RuxIconSwapVert & keyof RuxIconSwapVertAttributes as `prop:${K}`]?: RuxIconSwapVert[K] }; "rux-icon-swap-vertical-circle": Omit & { [K in keyof RuxIconSwapVerticalCircle & keyof RuxIconSwapVerticalCircleAttributes]?: RuxIconSwapVerticalCircle[K] } & { [K in keyof RuxIconSwapVerticalCircle & keyof RuxIconSwapVerticalCircleAttributes as `attr:${K}`]?: RuxIconSwapVerticalCircleAttributes[K] } & { [K in keyof RuxIconSwapVerticalCircle & keyof RuxIconSwapVerticalCircleAttributes as `prop:${K}`]?: RuxIconSwapVerticalCircle[K] }; "rux-icon-switch-camera": Omit & { [K in keyof RuxIconSwitchCamera & keyof RuxIconSwitchCameraAttributes]?: RuxIconSwitchCamera[K] } & { [K in keyof RuxIconSwitchCamera & keyof RuxIconSwitchCameraAttributes as `attr:${K}`]?: RuxIconSwitchCameraAttributes[K] } & { [K in keyof RuxIconSwitchCamera & keyof RuxIconSwitchCameraAttributes as `prop:${K}`]?: RuxIconSwitchCamera[K] }; "rux-icon-switch-video": Omit & { [K in keyof RuxIconSwitchVideo & keyof RuxIconSwitchVideoAttributes]?: RuxIconSwitchVideo[K] } & { [K in keyof RuxIconSwitchVideo & keyof RuxIconSwitchVideoAttributes as `attr:${K}`]?: RuxIconSwitchVideoAttributes[K] } & { [K in keyof RuxIconSwitchVideo & keyof RuxIconSwitchVideoAttributes as `prop:${K}`]?: RuxIconSwitchVideo[K] }; "rux-icon-sync": Omit & { [K in keyof RuxIconSync & keyof RuxIconSyncAttributes]?: RuxIconSync[K] } & { [K in keyof RuxIconSync & keyof RuxIconSyncAttributes as `attr:${K}`]?: RuxIconSyncAttributes[K] } & { [K in keyof RuxIconSync & keyof RuxIconSyncAttributes as `prop:${K}`]?: RuxIconSync[K] }; "rux-icon-sync-disabled": Omit & { [K in keyof RuxIconSyncDisabled & keyof RuxIconSyncDisabledAttributes]?: RuxIconSyncDisabled[K] } & { [K in keyof RuxIconSyncDisabled & keyof RuxIconSyncDisabledAttributes as `attr:${K}`]?: RuxIconSyncDisabledAttributes[K] } & { [K in keyof RuxIconSyncDisabled & keyof RuxIconSyncDisabledAttributes as `prop:${K}`]?: RuxIconSyncDisabled[K] }; "rux-icon-sync-problem": Omit & { [K in keyof RuxIconSyncProblem & keyof RuxIconSyncProblemAttributes]?: RuxIconSyncProblem[K] } & { [K in keyof RuxIconSyncProblem & keyof RuxIconSyncProblemAttributes as `attr:${K}`]?: RuxIconSyncProblemAttributes[K] } & { [K in keyof RuxIconSyncProblem & keyof RuxIconSyncProblemAttributes as `prop:${K}`]?: RuxIconSyncProblem[K] }; "rux-icon-system-update": Omit & { [K in keyof RuxIconSystemUpdate & keyof RuxIconSystemUpdateAttributes]?: RuxIconSystemUpdate[K] } & { [K in keyof RuxIconSystemUpdate & keyof RuxIconSystemUpdateAttributes as `attr:${K}`]?: RuxIconSystemUpdateAttributes[K] } & { [K in keyof RuxIconSystemUpdate & keyof RuxIconSystemUpdateAttributes as `prop:${K}`]?: RuxIconSystemUpdate[K] }; "rux-icon-tab": Omit & { [K in keyof RuxIconTab & keyof RuxIconTabAttributes]?: RuxIconTab[K] } & { [K in keyof RuxIconTab & keyof RuxIconTabAttributes as `attr:${K}`]?: RuxIconTabAttributes[K] } & { [K in keyof RuxIconTab & keyof RuxIconTabAttributes as `prop:${K}`]?: RuxIconTab[K] }; "rux-icon-tab-unselected": Omit & { [K in keyof RuxIconTabUnselected & keyof RuxIconTabUnselectedAttributes]?: RuxIconTabUnselected[K] } & { [K in keyof RuxIconTabUnselected & keyof RuxIconTabUnselectedAttributes as `attr:${K}`]?: RuxIconTabUnselectedAttributes[K] } & { [K in keyof RuxIconTabUnselected & keyof RuxIconTabUnselectedAttributes as `prop:${K}`]?: RuxIconTabUnselected[K] }; "rux-icon-table-chart": Omit & { [K in keyof RuxIconTableChart & keyof RuxIconTableChartAttributes]?: RuxIconTableChart[K] } & { [K in keyof RuxIconTableChart & keyof RuxIconTableChartAttributes as `attr:${K}`]?: RuxIconTableChartAttributes[K] } & { [K in keyof RuxIconTableChart & keyof RuxIconTableChartAttributes as `prop:${K}`]?: RuxIconTableChart[K] }; "rux-icon-tablet": Omit & { [K in keyof RuxIconTablet & keyof RuxIconTabletAttributes]?: RuxIconTablet[K] } & { [K in keyof RuxIconTablet & keyof RuxIconTabletAttributes as `attr:${K}`]?: RuxIconTabletAttributes[K] } & { [K in keyof RuxIconTablet & keyof RuxIconTabletAttributes as `prop:${K}`]?: RuxIconTablet[K] }; "rux-icon-tablet-android": Omit & { [K in keyof RuxIconTabletAndroid & keyof RuxIconTabletAndroidAttributes]?: RuxIconTabletAndroid[K] } & { [K in keyof RuxIconTabletAndroid & keyof RuxIconTabletAndroidAttributes as `attr:${K}`]?: RuxIconTabletAndroidAttributes[K] } & { [K in keyof RuxIconTabletAndroid & keyof RuxIconTabletAndroidAttributes as `prop:${K}`]?: RuxIconTabletAndroid[K] }; "rux-icon-tablet-mac": Omit & { [K in keyof RuxIconTabletMac & keyof RuxIconTabletMacAttributes]?: RuxIconTabletMac[K] } & { [K in keyof RuxIconTabletMac & keyof RuxIconTabletMacAttributes as `attr:${K}`]?: RuxIconTabletMacAttributes[K] } & { [K in keyof RuxIconTabletMac & keyof RuxIconTabletMacAttributes as `prop:${K}`]?: RuxIconTabletMac[K] }; "rux-icon-tag-faces": Omit & { [K in keyof RuxIconTagFaces & keyof RuxIconTagFacesAttributes]?: RuxIconTagFaces[K] } & { [K in keyof RuxIconTagFaces & keyof RuxIconTagFacesAttributes as `attr:${K}`]?: RuxIconTagFacesAttributes[K] } & { [K in keyof RuxIconTagFaces & keyof RuxIconTagFacesAttributes as `prop:${K}`]?: RuxIconTagFaces[K] }; "rux-icon-tap-and-play": Omit & { [K in keyof RuxIconTapAndPlay & keyof RuxIconTapAndPlayAttributes]?: RuxIconTapAndPlay[K] } & { [K in keyof RuxIconTapAndPlay & keyof RuxIconTapAndPlayAttributes as `attr:${K}`]?: RuxIconTapAndPlayAttributes[K] } & { [K in keyof RuxIconTapAndPlay & keyof RuxIconTapAndPlayAttributes as `prop:${K}`]?: RuxIconTapAndPlay[K] }; "rux-icon-terrain": Omit & { [K in keyof RuxIconTerrain & keyof RuxIconTerrainAttributes]?: RuxIconTerrain[K] } & { [K in keyof RuxIconTerrain & keyof RuxIconTerrainAttributes as `attr:${K}`]?: RuxIconTerrainAttributes[K] } & { [K in keyof RuxIconTerrain & keyof RuxIconTerrainAttributes as `prop:${K}`]?: RuxIconTerrain[K] }; "rux-icon-text-fields": Omit & { [K in keyof RuxIconTextFields & keyof RuxIconTextFieldsAttributes]?: RuxIconTextFields[K] } & { [K in keyof RuxIconTextFields & keyof RuxIconTextFieldsAttributes as `attr:${K}`]?: RuxIconTextFieldsAttributes[K] } & { [K in keyof RuxIconTextFields & keyof RuxIconTextFieldsAttributes as `prop:${K}`]?: RuxIconTextFields[K] }; "rux-icon-text-format": Omit & { [K in keyof RuxIconTextFormat & keyof RuxIconTextFormatAttributes]?: RuxIconTextFormat[K] } & { [K in keyof RuxIconTextFormat & keyof RuxIconTextFormatAttributes as `attr:${K}`]?: RuxIconTextFormatAttributes[K] } & { [K in keyof RuxIconTextFormat & keyof RuxIconTextFormatAttributes as `prop:${K}`]?: RuxIconTextFormat[K] }; "rux-icon-text-rotate-up": Omit & { [K in keyof RuxIconTextRotateUp & keyof RuxIconTextRotateUpAttributes]?: RuxIconTextRotateUp[K] } & { [K in keyof RuxIconTextRotateUp & keyof RuxIconTextRotateUpAttributes as `attr:${K}`]?: RuxIconTextRotateUpAttributes[K] } & { [K in keyof RuxIconTextRotateUp & keyof RuxIconTextRotateUpAttributes as `prop:${K}`]?: RuxIconTextRotateUp[K] }; "rux-icon-text-rotate-vertical": Omit & { [K in keyof RuxIconTextRotateVertical & keyof RuxIconTextRotateVerticalAttributes]?: RuxIconTextRotateVertical[K] } & { [K in keyof RuxIconTextRotateVertical & keyof RuxIconTextRotateVerticalAttributes as `attr:${K}`]?: RuxIconTextRotateVerticalAttributes[K] } & { [K in keyof RuxIconTextRotateVertical & keyof RuxIconTextRotateVerticalAttributes as `prop:${K}`]?: RuxIconTextRotateVertical[K] }; "rux-icon-text-rotation-none": Omit & { [K in keyof RuxIconTextRotationNone & keyof RuxIconTextRotationNoneAttributes]?: RuxIconTextRotationNone[K] } & { [K in keyof RuxIconTextRotationNone & keyof RuxIconTextRotationNoneAttributes as `attr:${K}`]?: RuxIconTextRotationNoneAttributes[K] } & { [K in keyof RuxIconTextRotationNone & keyof RuxIconTextRotationNoneAttributes as `prop:${K}`]?: RuxIconTextRotationNone[K] }; "rux-icon-textsms": Omit & { [K in keyof RuxIconTextsms & keyof RuxIconTextsmsAttributes]?: RuxIconTextsms[K] } & { [K in keyof RuxIconTextsms & keyof RuxIconTextsmsAttributes as `attr:${K}`]?: RuxIconTextsmsAttributes[K] } & { [K in keyof RuxIconTextsms & keyof RuxIconTextsmsAttributes as `prop:${K}`]?: RuxIconTextsms[K] }; "rux-icon-texture": Omit & { [K in keyof RuxIconTexture & keyof RuxIconTextureAttributes]?: RuxIconTexture[K] } & { [K in keyof RuxIconTexture & keyof RuxIconTextureAttributes as `attr:${K}`]?: RuxIconTextureAttributes[K] } & { [K in keyof RuxIconTexture & keyof RuxIconTextureAttributes as `prop:${K}`]?: RuxIconTexture[K] }; "rux-icon-theaters": Omit & { [K in keyof RuxIconTheaters & keyof RuxIconTheatersAttributes]?: RuxIconTheaters[K] } & { [K in keyof RuxIconTheaters & keyof RuxIconTheatersAttributes as `attr:${K}`]?: RuxIconTheatersAttributes[K] } & { [K in keyof RuxIconTheaters & keyof RuxIconTheatersAttributes as `prop:${K}`]?: RuxIconTheaters[K] }; "rux-icon-thermal": Omit & { [K in keyof RuxIconThermal & keyof RuxIconThermalAttributes]?: RuxIconThermal[K] } & { [K in keyof RuxIconThermal & keyof RuxIconThermalAttributes as `attr:${K}`]?: RuxIconThermalAttributes[K] } & { [K in keyof RuxIconThermal & keyof RuxIconThermalAttributes as `prop:${K}`]?: RuxIconThermal[K] }; "rux-icon-thumb-down": Omit & { [K in keyof RuxIconThumbDown & keyof RuxIconThumbDownAttributes]?: RuxIconThumbDown[K] } & { [K in keyof RuxIconThumbDown & keyof RuxIconThumbDownAttributes as `attr:${K}`]?: RuxIconThumbDownAttributes[K] } & { [K in keyof RuxIconThumbDown & keyof RuxIconThumbDownAttributes as `prop:${K}`]?: RuxIconThumbDown[K] }; "rux-icon-thumb-down-alt": Omit & { [K in keyof RuxIconThumbDownAlt & keyof RuxIconThumbDownAltAttributes]?: RuxIconThumbDownAlt[K] } & { [K in keyof RuxIconThumbDownAlt & keyof RuxIconThumbDownAltAttributes as `attr:${K}`]?: RuxIconThumbDownAltAttributes[K] } & { [K in keyof RuxIconThumbDownAlt & keyof RuxIconThumbDownAltAttributes as `prop:${K}`]?: RuxIconThumbDownAlt[K] }; "rux-icon-thumb-up": Omit & { [K in keyof RuxIconThumbUp & keyof RuxIconThumbUpAttributes]?: RuxIconThumbUp[K] } & { [K in keyof RuxIconThumbUp & keyof RuxIconThumbUpAttributes as `attr:${K}`]?: RuxIconThumbUpAttributes[K] } & { [K in keyof RuxIconThumbUp & keyof RuxIconThumbUpAttributes as `prop:${K}`]?: RuxIconThumbUp[K] }; "rux-icon-thumb-up-alt": Omit & { [K in keyof RuxIconThumbUpAlt & keyof RuxIconThumbUpAltAttributes]?: RuxIconThumbUpAlt[K] } & { [K in keyof RuxIconThumbUpAlt & keyof RuxIconThumbUpAltAttributes as `attr:${K}`]?: RuxIconThumbUpAltAttributes[K] } & { [K in keyof RuxIconThumbUpAlt & keyof RuxIconThumbUpAltAttributes as `prop:${K}`]?: RuxIconThumbUpAlt[K] }; "rux-icon-thumbs-up-down": Omit & { [K in keyof RuxIconThumbsUpDown & keyof RuxIconThumbsUpDownAttributes]?: RuxIconThumbsUpDown[K] } & { [K in keyof RuxIconThumbsUpDown & keyof RuxIconThumbsUpDownAttributes as `attr:${K}`]?: RuxIconThumbsUpDownAttributes[K] } & { [K in keyof RuxIconThumbsUpDown & keyof RuxIconThumbsUpDownAttributes as `prop:${K}`]?: RuxIconThumbsUpDown[K] }; "rux-icon-time-to-leave": Omit & { [K in keyof RuxIconTimeToLeave & keyof RuxIconTimeToLeaveAttributes]?: RuxIconTimeToLeave[K] } & { [K in keyof RuxIconTimeToLeave & keyof RuxIconTimeToLeaveAttributes as `attr:${K}`]?: RuxIconTimeToLeaveAttributes[K] } & { [K in keyof RuxIconTimeToLeave & keyof RuxIconTimeToLeaveAttributes as `prop:${K}`]?: RuxIconTimeToLeave[K] }; "rux-icon-timelapse": Omit & { [K in keyof RuxIconTimelapse & keyof RuxIconTimelapseAttributes]?: RuxIconTimelapse[K] } & { [K in keyof RuxIconTimelapse & keyof RuxIconTimelapseAttributes as `attr:${K}`]?: RuxIconTimelapseAttributes[K] } & { [K in keyof RuxIconTimelapse & keyof RuxIconTimelapseAttributes as `prop:${K}`]?: RuxIconTimelapse[K] }; "rux-icon-timeline": Omit & { [K in keyof RuxIconTimeline & keyof RuxIconTimelineAttributes]?: RuxIconTimeline[K] } & { [K in keyof RuxIconTimeline & keyof RuxIconTimelineAttributes as `attr:${K}`]?: RuxIconTimelineAttributes[K] } & { [K in keyof RuxIconTimeline & keyof RuxIconTimelineAttributes as `prop:${K}`]?: RuxIconTimeline[K] }; "rux-icon-timer": Omit & { [K in keyof RuxIconTimer & keyof RuxIconTimerAttributes]?: RuxIconTimer[K] } & { [K in keyof RuxIconTimer & keyof RuxIconTimerAttributes as `attr:${K}`]?: RuxIconTimerAttributes[K] } & { [K in keyof RuxIconTimer & keyof RuxIconTimerAttributes as `prop:${K}`]?: RuxIconTimer[K] }; "rux-icon-timer-10": Omit & { [K in keyof RuxIconTimer10 & keyof RuxIconTimer10Attributes]?: RuxIconTimer10[K] } & { [K in keyof RuxIconTimer10 & keyof RuxIconTimer10Attributes as `attr:${K}`]?: RuxIconTimer10Attributes[K] } & { [K in keyof RuxIconTimer10 & keyof RuxIconTimer10Attributes as `prop:${K}`]?: RuxIconTimer10[K] }; "rux-icon-timer-3": Omit & { [K in keyof RuxIconTimer3 & keyof RuxIconTimer3Attributes]?: RuxIconTimer3[K] } & { [K in keyof RuxIconTimer3 & keyof RuxIconTimer3Attributes as `attr:${K}`]?: RuxIconTimer3Attributes[K] } & { [K in keyof RuxIconTimer3 & keyof RuxIconTimer3Attributes as `prop:${K}`]?: RuxIconTimer3[K] }; "rux-icon-timer-off": Omit & { [K in keyof RuxIconTimerOff & keyof RuxIconTimerOffAttributes]?: RuxIconTimerOff[K] } & { [K in keyof RuxIconTimerOff & keyof RuxIconTimerOffAttributes as `attr:${K}`]?: RuxIconTimerOffAttributes[K] } & { [K in keyof RuxIconTimerOff & keyof RuxIconTimerOffAttributes as `prop:${K}`]?: RuxIconTimerOff[K] }; "rux-icon-title": Omit & { [K in keyof RuxIconTitle & keyof RuxIconTitleAttributes]?: RuxIconTitle[K] } & { [K in keyof RuxIconTitle & keyof RuxIconTitleAttributes as `attr:${K}`]?: RuxIconTitleAttributes[K] } & { [K in keyof RuxIconTitle & keyof RuxIconTitleAttributes as `prop:${K}`]?: RuxIconTitle[K] }; "rux-icon-toc": Omit & { [K in keyof RuxIconToc & keyof RuxIconTocAttributes]?: RuxIconToc[K] } & { [K in keyof RuxIconToc & keyof RuxIconTocAttributes as `attr:${K}`]?: RuxIconTocAttributes[K] } & { [K in keyof RuxIconToc & keyof RuxIconTocAttributes as `prop:${K}`]?: RuxIconToc[K] }; "rux-icon-today": Omit & { [K in keyof RuxIconToday & keyof RuxIconTodayAttributes]?: RuxIconToday[K] } & { [K in keyof RuxIconToday & keyof RuxIconTodayAttributes as `attr:${K}`]?: RuxIconTodayAttributes[K] } & { [K in keyof RuxIconToday & keyof RuxIconTodayAttributes as `prop:${K}`]?: RuxIconToday[K] }; "rux-icon-toggle-off": Omit & { [K in keyof RuxIconToggleOff & keyof RuxIconToggleOffAttributes]?: RuxIconToggleOff[K] } & { [K in keyof RuxIconToggleOff & keyof RuxIconToggleOffAttributes as `attr:${K}`]?: RuxIconToggleOffAttributes[K] } & { [K in keyof RuxIconToggleOff & keyof RuxIconToggleOffAttributes as `prop:${K}`]?: RuxIconToggleOff[K] }; "rux-icon-toggle-on": Omit & { [K in keyof RuxIconToggleOn & keyof RuxIconToggleOnAttributes]?: RuxIconToggleOn[K] } & { [K in keyof RuxIconToggleOn & keyof RuxIconToggleOnAttributes as `attr:${K}`]?: RuxIconToggleOnAttributes[K] } & { [K in keyof RuxIconToggleOn & keyof RuxIconToggleOnAttributes as `prop:${K}`]?: RuxIconToggleOn[K] }; "rux-icon-toll": Omit & { [K in keyof RuxIconToll & keyof RuxIconTollAttributes]?: RuxIconToll[K] } & { [K in keyof RuxIconToll & keyof RuxIconTollAttributes as `attr:${K}`]?: RuxIconTollAttributes[K] } & { [K in keyof RuxIconToll & keyof RuxIconTollAttributes as `prop:${K}`]?: RuxIconToll[K] }; "rux-icon-tonality": Omit & { [K in keyof RuxIconTonality & keyof RuxIconTonalityAttributes]?: RuxIconTonality[K] } & { [K in keyof RuxIconTonality & keyof RuxIconTonalityAttributes as `attr:${K}`]?: RuxIconTonalityAttributes[K] } & { [K in keyof RuxIconTonality & keyof RuxIconTonalityAttributes as `prop:${K}`]?: RuxIconTonality[K] }; "rux-icon-touch-app": Omit & { [K in keyof RuxIconTouchApp & keyof RuxIconTouchAppAttributes]?: RuxIconTouchApp[K] } & { [K in keyof RuxIconTouchApp & keyof RuxIconTouchAppAttributes as `attr:${K}`]?: RuxIconTouchAppAttributes[K] } & { [K in keyof RuxIconTouchApp & keyof RuxIconTouchAppAttributes as `prop:${K}`]?: RuxIconTouchApp[K] }; "rux-icon-toys": Omit & { [K in keyof RuxIconToys & keyof RuxIconToysAttributes]?: RuxIconToys[K] } & { [K in keyof RuxIconToys & keyof RuxIconToysAttributes as `attr:${K}`]?: RuxIconToysAttributes[K] } & { [K in keyof RuxIconToys & keyof RuxIconToysAttributes as `prop:${K}`]?: RuxIconToys[K] }; "rux-icon-track-changes": Omit & { [K in keyof RuxIconTrackChanges & keyof RuxIconTrackChangesAttributes]?: RuxIconTrackChanges[K] } & { [K in keyof RuxIconTrackChanges & keyof RuxIconTrackChangesAttributes as `attr:${K}`]?: RuxIconTrackChangesAttributes[K] } & { [K in keyof RuxIconTrackChanges & keyof RuxIconTrackChangesAttributes as `prop:${K}`]?: RuxIconTrackChanges[K] }; "rux-icon-traffic": Omit & { [K in keyof RuxIconTraffic & keyof RuxIconTrafficAttributes]?: RuxIconTraffic[K] } & { [K in keyof RuxIconTraffic & keyof RuxIconTrafficAttributes as `attr:${K}`]?: RuxIconTrafficAttributes[K] } & { [K in keyof RuxIconTraffic & keyof RuxIconTrafficAttributes as `prop:${K}`]?: RuxIconTraffic[K] }; "rux-icon-train": Omit & { [K in keyof RuxIconTrain & keyof RuxIconTrainAttributes]?: RuxIconTrain[K] } & { [K in keyof RuxIconTrain & keyof RuxIconTrainAttributes as `attr:${K}`]?: RuxIconTrainAttributes[K] } & { [K in keyof RuxIconTrain & keyof RuxIconTrainAttributes as `prop:${K}`]?: RuxIconTrain[K] }; "rux-icon-tram": Omit & { [K in keyof RuxIconTram & keyof RuxIconTramAttributes]?: RuxIconTram[K] } & { [K in keyof RuxIconTram & keyof RuxIconTramAttributes as `attr:${K}`]?: RuxIconTramAttributes[K] } & { [K in keyof RuxIconTram & keyof RuxIconTramAttributes as `prop:${K}`]?: RuxIconTram[K] }; "rux-icon-transfer-within-a-station": Omit & { [K in keyof RuxIconTransferWithinAStation & keyof RuxIconTransferWithinAStationAttributes]?: RuxIconTransferWithinAStation[K] } & { [K in keyof RuxIconTransferWithinAStation & keyof RuxIconTransferWithinAStationAttributes as `attr:${K}`]?: RuxIconTransferWithinAStationAttributes[K] } & { [K in keyof RuxIconTransferWithinAStation & keyof RuxIconTransferWithinAStationAttributes as `prop:${K}`]?: RuxIconTransferWithinAStation[K] }; "rux-icon-transform": Omit & { [K in keyof RuxIconTransform & keyof RuxIconTransformAttributes]?: RuxIconTransform[K] } & { [K in keyof RuxIconTransform & keyof RuxIconTransformAttributes as `attr:${K}`]?: RuxIconTransformAttributes[K] } & { [K in keyof RuxIconTransform & keyof RuxIconTransformAttributes as `prop:${K}`]?: RuxIconTransform[K] }; "rux-icon-transit-enterexit": Omit & { [K in keyof RuxIconTransitEnterexit & keyof RuxIconTransitEnterexitAttributes]?: RuxIconTransitEnterexit[K] } & { [K in keyof RuxIconTransitEnterexit & keyof RuxIconTransitEnterexitAttributes as `attr:${K}`]?: RuxIconTransitEnterexitAttributes[K] } & { [K in keyof RuxIconTransitEnterexit & keyof RuxIconTransitEnterexitAttributes as `prop:${K}`]?: RuxIconTransitEnterexit[K] }; "rux-icon-translate": Omit & { [K in keyof RuxIconTranslate & keyof RuxIconTranslateAttributes]?: RuxIconTranslate[K] } & { [K in keyof RuxIconTranslate & keyof RuxIconTranslateAttributes as `attr:${K}`]?: RuxIconTranslateAttributes[K] } & { [K in keyof RuxIconTranslate & keyof RuxIconTranslateAttributes as `prop:${K}`]?: RuxIconTranslate[K] }; "rux-icon-trending-down": Omit & { [K in keyof RuxIconTrendingDown & keyof RuxIconTrendingDownAttributes]?: RuxIconTrendingDown[K] } & { [K in keyof RuxIconTrendingDown & keyof RuxIconTrendingDownAttributes as `attr:${K}`]?: RuxIconTrendingDownAttributes[K] } & { [K in keyof RuxIconTrendingDown & keyof RuxIconTrendingDownAttributes as `prop:${K}`]?: RuxIconTrendingDown[K] }; "rux-icon-trending-flat": Omit & { [K in keyof RuxIconTrendingFlat & keyof RuxIconTrendingFlatAttributes]?: RuxIconTrendingFlat[K] } & { [K in keyof RuxIconTrendingFlat & keyof RuxIconTrendingFlatAttributes as `attr:${K}`]?: RuxIconTrendingFlatAttributes[K] } & { [K in keyof RuxIconTrendingFlat & keyof RuxIconTrendingFlatAttributes as `prop:${K}`]?: RuxIconTrendingFlat[K] }; "rux-icon-trending-up": Omit & { [K in keyof RuxIconTrendingUp & keyof RuxIconTrendingUpAttributes]?: RuxIconTrendingUp[K] } & { [K in keyof RuxIconTrendingUp & keyof RuxIconTrendingUpAttributes as `attr:${K}`]?: RuxIconTrendingUpAttributes[K] } & { [K in keyof RuxIconTrendingUp & keyof RuxIconTrendingUpAttributes as `prop:${K}`]?: RuxIconTrendingUp[K] }; "rux-icon-trip-origin": Omit & { [K in keyof RuxIconTripOrigin & keyof RuxIconTripOriginAttributes]?: RuxIconTripOrigin[K] } & { [K in keyof RuxIconTripOrigin & keyof RuxIconTripOriginAttributes as `attr:${K}`]?: RuxIconTripOriginAttributes[K] } & { [K in keyof RuxIconTripOrigin & keyof RuxIconTripOriginAttributes as `prop:${K}`]?: RuxIconTripOrigin[K] }; "rux-icon-tune": Omit & { [K in keyof RuxIconTune & keyof RuxIconTuneAttributes]?: RuxIconTune[K] } & { [K in keyof RuxIconTune & keyof RuxIconTuneAttributes as `attr:${K}`]?: RuxIconTuneAttributes[K] } & { [K in keyof RuxIconTune & keyof RuxIconTuneAttributes as `prop:${K}`]?: RuxIconTune[K] }; "rux-icon-turned-in": Omit & { [K in keyof RuxIconTurnedIn & keyof RuxIconTurnedInAttributes]?: RuxIconTurnedIn[K] } & { [K in keyof RuxIconTurnedIn & keyof RuxIconTurnedInAttributes as `attr:${K}`]?: RuxIconTurnedInAttributes[K] } & { [K in keyof RuxIconTurnedIn & keyof RuxIconTurnedInAttributes as `prop:${K}`]?: RuxIconTurnedIn[K] }; "rux-icon-turned-in-not": Omit & { [K in keyof RuxIconTurnedInNot & keyof RuxIconTurnedInNotAttributes]?: RuxIconTurnedInNot[K] } & { [K in keyof RuxIconTurnedInNot & keyof RuxIconTurnedInNotAttributes as `attr:${K}`]?: RuxIconTurnedInNotAttributes[K] } & { [K in keyof RuxIconTurnedInNot & keyof RuxIconTurnedInNotAttributes as `prop:${K}`]?: RuxIconTurnedInNot[K] }; "rux-icon-tv": Omit & { [K in keyof RuxIconTv & keyof RuxIconTvAttributes]?: RuxIconTv[K] } & { [K in keyof RuxIconTv & keyof RuxIconTvAttributes as `attr:${K}`]?: RuxIconTvAttributes[K] } & { [K in keyof RuxIconTv & keyof RuxIconTvAttributes as `prop:${K}`]?: RuxIconTv[K] }; "rux-icon-tv-off": Omit & { [K in keyof RuxIconTvOff & keyof RuxIconTvOffAttributes]?: RuxIconTvOff[K] } & { [K in keyof RuxIconTvOff & keyof RuxIconTvOffAttributes as `attr:${K}`]?: RuxIconTvOffAttributes[K] } & { [K in keyof RuxIconTvOff & keyof RuxIconTvOffAttributes as `prop:${K}`]?: RuxIconTvOff[K] }; "rux-icon-unarchive": Omit & { [K in keyof RuxIconUnarchive & keyof RuxIconUnarchiveAttributes]?: RuxIconUnarchive[K] } & { [K in keyof RuxIconUnarchive & keyof RuxIconUnarchiveAttributes as `attr:${K}`]?: RuxIconUnarchiveAttributes[K] } & { [K in keyof RuxIconUnarchive & keyof RuxIconUnarchiveAttributes as `prop:${K}`]?: RuxIconUnarchive[K] }; "rux-icon-undo": Omit & { [K in keyof RuxIconUndo & keyof RuxIconUndoAttributes]?: RuxIconUndo[K] } & { [K in keyof RuxIconUndo & keyof RuxIconUndoAttributes as `attr:${K}`]?: RuxIconUndoAttributes[K] } & { [K in keyof RuxIconUndo & keyof RuxIconUndoAttributes as `prop:${K}`]?: RuxIconUndo[K] }; "rux-icon-unfold-less": Omit & { [K in keyof RuxIconUnfoldLess & keyof RuxIconUnfoldLessAttributes]?: RuxIconUnfoldLess[K] } & { [K in keyof RuxIconUnfoldLess & keyof RuxIconUnfoldLessAttributes as `attr:${K}`]?: RuxIconUnfoldLessAttributes[K] } & { [K in keyof RuxIconUnfoldLess & keyof RuxIconUnfoldLessAttributes as `prop:${K}`]?: RuxIconUnfoldLess[K] }; "rux-icon-unfold-more": Omit & { [K in keyof RuxIconUnfoldMore & keyof RuxIconUnfoldMoreAttributes]?: RuxIconUnfoldMore[K] } & { [K in keyof RuxIconUnfoldMore & keyof RuxIconUnfoldMoreAttributes as `attr:${K}`]?: RuxIconUnfoldMoreAttributes[K] } & { [K in keyof RuxIconUnfoldMore & keyof RuxIconUnfoldMoreAttributes as `prop:${K}`]?: RuxIconUnfoldMore[K] }; "rux-icon-unsubscribe": Omit & { [K in keyof RuxIconUnsubscribe & keyof RuxIconUnsubscribeAttributes]?: RuxIconUnsubscribe[K] } & { [K in keyof RuxIconUnsubscribe & keyof RuxIconUnsubscribeAttributes as `attr:${K}`]?: RuxIconUnsubscribeAttributes[K] } & { [K in keyof RuxIconUnsubscribe & keyof RuxIconUnsubscribeAttributes as `prop:${K}`]?: RuxIconUnsubscribe[K] }; "rux-icon-update": Omit & { [K in keyof RuxIconUpdate & keyof RuxIconUpdateAttributes]?: RuxIconUpdate[K] } & { [K in keyof RuxIconUpdate & keyof RuxIconUpdateAttributes as `attr:${K}`]?: RuxIconUpdateAttributes[K] } & { [K in keyof RuxIconUpdate & keyof RuxIconUpdateAttributes as `prop:${K}`]?: RuxIconUpdate[K] }; "rux-icon-usb": Omit & { [K in keyof RuxIconUsb & keyof RuxIconUsbAttributes]?: RuxIconUsb[K] } & { [K in keyof RuxIconUsb & keyof RuxIconUsbAttributes as `attr:${K}`]?: RuxIconUsbAttributes[K] } & { [K in keyof RuxIconUsb & keyof RuxIconUsbAttributes as `prop:${K}`]?: RuxIconUsb[K] }; "rux-icon-verified-user": Omit & { [K in keyof RuxIconVerifiedUser & keyof RuxIconVerifiedUserAttributes]?: RuxIconVerifiedUser[K] } & { [K in keyof RuxIconVerifiedUser & keyof RuxIconVerifiedUserAttributes as `attr:${K}`]?: RuxIconVerifiedUserAttributes[K] } & { [K in keyof RuxIconVerifiedUser & keyof RuxIconVerifiedUserAttributes as `prop:${K}`]?: RuxIconVerifiedUser[K] }; "rux-icon-vertical-align-bottom": Omit & { [K in keyof RuxIconVerticalAlignBottom & keyof RuxIconVerticalAlignBottomAttributes]?: RuxIconVerticalAlignBottom[K] } & { [K in keyof RuxIconVerticalAlignBottom & keyof RuxIconVerticalAlignBottomAttributes as `attr:${K}`]?: RuxIconVerticalAlignBottomAttributes[K] } & { [K in keyof RuxIconVerticalAlignBottom & keyof RuxIconVerticalAlignBottomAttributes as `prop:${K}`]?: RuxIconVerticalAlignBottom[K] }; "rux-icon-vertical-align-center": Omit & { [K in keyof RuxIconVerticalAlignCenter & keyof RuxIconVerticalAlignCenterAttributes]?: RuxIconVerticalAlignCenter[K] } & { [K in keyof RuxIconVerticalAlignCenter & keyof RuxIconVerticalAlignCenterAttributes as `attr:${K}`]?: RuxIconVerticalAlignCenterAttributes[K] } & { [K in keyof RuxIconVerticalAlignCenter & keyof RuxIconVerticalAlignCenterAttributes as `prop:${K}`]?: RuxIconVerticalAlignCenter[K] }; "rux-icon-vertical-align-top": Omit & { [K in keyof RuxIconVerticalAlignTop & keyof RuxIconVerticalAlignTopAttributes]?: RuxIconVerticalAlignTop[K] } & { [K in keyof RuxIconVerticalAlignTop & keyof RuxIconVerticalAlignTopAttributes as `attr:${K}`]?: RuxIconVerticalAlignTopAttributes[K] } & { [K in keyof RuxIconVerticalAlignTop & keyof RuxIconVerticalAlignTopAttributes as `prop:${K}`]?: RuxIconVerticalAlignTop[K] }; "rux-icon-vertical-split": Omit & { [K in keyof RuxIconVerticalSplit & keyof RuxIconVerticalSplitAttributes]?: RuxIconVerticalSplit[K] } & { [K in keyof RuxIconVerticalSplit & keyof RuxIconVerticalSplitAttributes as `attr:${K}`]?: RuxIconVerticalSplitAttributes[K] } & { [K in keyof RuxIconVerticalSplit & keyof RuxIconVerticalSplitAttributes as `prop:${K}`]?: RuxIconVerticalSplit[K] }; "rux-icon-vibration": Omit & { [K in keyof RuxIconVibration & keyof RuxIconVibrationAttributes]?: RuxIconVibration[K] } & { [K in keyof RuxIconVibration & keyof RuxIconVibrationAttributes as `attr:${K}`]?: RuxIconVibrationAttributes[K] } & { [K in keyof RuxIconVibration & keyof RuxIconVibrationAttributes as `prop:${K}`]?: RuxIconVibration[K] }; "rux-icon-video-call": Omit & { [K in keyof RuxIconVideoCall & keyof RuxIconVideoCallAttributes]?: RuxIconVideoCall[K] } & { [K in keyof RuxIconVideoCall & keyof RuxIconVideoCallAttributes as `attr:${K}`]?: RuxIconVideoCallAttributes[K] } & { [K in keyof RuxIconVideoCall & keyof RuxIconVideoCallAttributes as `prop:${K}`]?: RuxIconVideoCall[K] }; "rux-icon-video-label": Omit & { [K in keyof RuxIconVideoLabel & keyof RuxIconVideoLabelAttributes]?: RuxIconVideoLabel[K] } & { [K in keyof RuxIconVideoLabel & keyof RuxIconVideoLabelAttributes as `attr:${K}`]?: RuxIconVideoLabelAttributes[K] } & { [K in keyof RuxIconVideoLabel & keyof RuxIconVideoLabelAttributes as `prop:${K}`]?: RuxIconVideoLabel[K] }; "rux-icon-video-library": Omit & { [K in keyof RuxIconVideoLibrary & keyof RuxIconVideoLibraryAttributes]?: RuxIconVideoLibrary[K] } & { [K in keyof RuxIconVideoLibrary & keyof RuxIconVideoLibraryAttributes as `attr:${K}`]?: RuxIconVideoLibraryAttributes[K] } & { [K in keyof RuxIconVideoLibrary & keyof RuxIconVideoLibraryAttributes as `prop:${K}`]?: RuxIconVideoLibrary[K] }; "rux-icon-videocam": Omit & { [K in keyof RuxIconVideocam & keyof RuxIconVideocamAttributes]?: RuxIconVideocam[K] } & { [K in keyof RuxIconVideocam & keyof RuxIconVideocamAttributes as `attr:${K}`]?: RuxIconVideocamAttributes[K] } & { [K in keyof RuxIconVideocam & keyof RuxIconVideocamAttributes as `prop:${K}`]?: RuxIconVideocam[K] }; "rux-icon-videocam-off": Omit & { [K in keyof RuxIconVideocamOff & keyof RuxIconVideocamOffAttributes]?: RuxIconVideocamOff[K] } & { [K in keyof RuxIconVideocamOff & keyof RuxIconVideocamOffAttributes as `attr:${K}`]?: RuxIconVideocamOffAttributes[K] } & { [K in keyof RuxIconVideocamOff & keyof RuxIconVideocamOffAttributes as `prop:${K}`]?: RuxIconVideocamOff[K] }; "rux-icon-videogame-asset": Omit & { [K in keyof RuxIconVideogameAsset & keyof RuxIconVideogameAssetAttributes]?: RuxIconVideogameAsset[K] } & { [K in keyof RuxIconVideogameAsset & keyof RuxIconVideogameAssetAttributes as `attr:${K}`]?: RuxIconVideogameAssetAttributes[K] } & { [K in keyof RuxIconVideogameAsset & keyof RuxIconVideogameAssetAttributes as `prop:${K}`]?: RuxIconVideogameAsset[K] }; "rux-icon-view-agenda": Omit & { [K in keyof RuxIconViewAgenda & keyof RuxIconViewAgendaAttributes]?: RuxIconViewAgenda[K] } & { [K in keyof RuxIconViewAgenda & keyof RuxIconViewAgendaAttributes as `attr:${K}`]?: RuxIconViewAgendaAttributes[K] } & { [K in keyof RuxIconViewAgenda & keyof RuxIconViewAgendaAttributes as `prop:${K}`]?: RuxIconViewAgenda[K] }; "rux-icon-view-array": Omit & { [K in keyof RuxIconViewArray & keyof RuxIconViewArrayAttributes]?: RuxIconViewArray[K] } & { [K in keyof RuxIconViewArray & keyof RuxIconViewArrayAttributes as `attr:${K}`]?: RuxIconViewArrayAttributes[K] } & { [K in keyof RuxIconViewArray & keyof RuxIconViewArrayAttributes as `prop:${K}`]?: RuxIconViewArray[K] }; "rux-icon-view-carousel": Omit & { [K in keyof RuxIconViewCarousel & keyof RuxIconViewCarouselAttributes]?: RuxIconViewCarousel[K] } & { [K in keyof RuxIconViewCarousel & keyof RuxIconViewCarouselAttributes as `attr:${K}`]?: RuxIconViewCarouselAttributes[K] } & { [K in keyof RuxIconViewCarousel & keyof RuxIconViewCarouselAttributes as `prop:${K}`]?: RuxIconViewCarousel[K] }; "rux-icon-view-column": Omit & { [K in keyof RuxIconViewColumn & keyof RuxIconViewColumnAttributes]?: RuxIconViewColumn[K] } & { [K in keyof RuxIconViewColumn & keyof RuxIconViewColumnAttributes as `attr:${K}`]?: RuxIconViewColumnAttributes[K] } & { [K in keyof RuxIconViewColumn & keyof RuxIconViewColumnAttributes as `prop:${K}`]?: RuxIconViewColumn[K] }; "rux-icon-view-comfy": Omit & { [K in keyof RuxIconViewComfy & keyof RuxIconViewComfyAttributes]?: RuxIconViewComfy[K] } & { [K in keyof RuxIconViewComfy & keyof RuxIconViewComfyAttributes as `attr:${K}`]?: RuxIconViewComfyAttributes[K] } & { [K in keyof RuxIconViewComfy & keyof RuxIconViewComfyAttributes as `prop:${K}`]?: RuxIconViewComfy[K] }; "rux-icon-view-compact": Omit & { [K in keyof RuxIconViewCompact & keyof RuxIconViewCompactAttributes]?: RuxIconViewCompact[K] } & { [K in keyof RuxIconViewCompact & keyof RuxIconViewCompactAttributes as `attr:${K}`]?: RuxIconViewCompactAttributes[K] } & { [K in keyof RuxIconViewCompact & keyof RuxIconViewCompactAttributes as `prop:${K}`]?: RuxIconViewCompact[K] }; "rux-icon-view-day": Omit & { [K in keyof RuxIconViewDay & keyof RuxIconViewDayAttributes]?: RuxIconViewDay[K] } & { [K in keyof RuxIconViewDay & keyof RuxIconViewDayAttributes as `attr:${K}`]?: RuxIconViewDayAttributes[K] } & { [K in keyof RuxIconViewDay & keyof RuxIconViewDayAttributes as `prop:${K}`]?: RuxIconViewDay[K] }; "rux-icon-view-headline": Omit & { [K in keyof RuxIconViewHeadline & keyof RuxIconViewHeadlineAttributes]?: RuxIconViewHeadline[K] } & { [K in keyof RuxIconViewHeadline & keyof RuxIconViewHeadlineAttributes as `attr:${K}`]?: RuxIconViewHeadlineAttributes[K] } & { [K in keyof RuxIconViewHeadline & keyof RuxIconViewHeadlineAttributes as `prop:${K}`]?: RuxIconViewHeadline[K] }; "rux-icon-view-list": Omit & { [K in keyof RuxIconViewList & keyof RuxIconViewListAttributes]?: RuxIconViewList[K] } & { [K in keyof RuxIconViewList & keyof RuxIconViewListAttributes as `attr:${K}`]?: RuxIconViewListAttributes[K] } & { [K in keyof RuxIconViewList & keyof RuxIconViewListAttributes as `prop:${K}`]?: RuxIconViewList[K] }; "rux-icon-view-module": Omit & { [K in keyof RuxIconViewModule & keyof RuxIconViewModuleAttributes]?: RuxIconViewModule[K] } & { [K in keyof RuxIconViewModule & keyof RuxIconViewModuleAttributes as `attr:${K}`]?: RuxIconViewModuleAttributes[K] } & { [K in keyof RuxIconViewModule & keyof RuxIconViewModuleAttributes as `prop:${K}`]?: RuxIconViewModule[K] }; "rux-icon-view-quilt": Omit & { [K in keyof RuxIconViewQuilt & keyof RuxIconViewQuiltAttributes]?: RuxIconViewQuilt[K] } & { [K in keyof RuxIconViewQuilt & keyof RuxIconViewQuiltAttributes as `attr:${K}`]?: RuxIconViewQuiltAttributes[K] } & { [K in keyof RuxIconViewQuilt & keyof RuxIconViewQuiltAttributes as `prop:${K}`]?: RuxIconViewQuilt[K] }; "rux-icon-view-stream": Omit & { [K in keyof RuxIconViewStream & keyof RuxIconViewStreamAttributes]?: RuxIconViewStream[K] } & { [K in keyof RuxIconViewStream & keyof RuxIconViewStreamAttributes as `attr:${K}`]?: RuxIconViewStreamAttributes[K] } & { [K in keyof RuxIconViewStream & keyof RuxIconViewStreamAttributes as `prop:${K}`]?: RuxIconViewStream[K] }; "rux-icon-view-week": Omit & { [K in keyof RuxIconViewWeek & keyof RuxIconViewWeekAttributes]?: RuxIconViewWeek[K] } & { [K in keyof RuxIconViewWeek & keyof RuxIconViewWeekAttributes as `attr:${K}`]?: RuxIconViewWeekAttributes[K] } & { [K in keyof RuxIconViewWeek & keyof RuxIconViewWeekAttributes as `prop:${K}`]?: RuxIconViewWeek[K] }; "rux-icon-vignette": Omit & { [K in keyof RuxIconVignette & keyof RuxIconVignetteAttributes]?: RuxIconVignette[K] } & { [K in keyof RuxIconVignette & keyof RuxIconVignetteAttributes as `attr:${K}`]?: RuxIconVignetteAttributes[K] } & { [K in keyof RuxIconVignette & keyof RuxIconVignetteAttributes as `prop:${K}`]?: RuxIconVignette[K] }; "rux-icon-visibility": Omit & { [K in keyof RuxIconVisibility & keyof RuxIconVisibilityAttributes]?: RuxIconVisibility[K] } & { [K in keyof RuxIconVisibility & keyof RuxIconVisibilityAttributes as `attr:${K}`]?: RuxIconVisibilityAttributes[K] } & { [K in keyof RuxIconVisibility & keyof RuxIconVisibilityAttributes as `prop:${K}`]?: RuxIconVisibility[K] }; "rux-icon-visibility-off": Omit & { [K in keyof RuxIconVisibilityOff & keyof RuxIconVisibilityOffAttributes]?: RuxIconVisibilityOff[K] } & { [K in keyof RuxIconVisibilityOff & keyof RuxIconVisibilityOffAttributes as `attr:${K}`]?: RuxIconVisibilityOffAttributes[K] } & { [K in keyof RuxIconVisibilityOff & keyof RuxIconVisibilityOffAttributes as `prop:${K}`]?: RuxIconVisibilityOff[K] }; "rux-icon-voice-chat": Omit & { [K in keyof RuxIconVoiceChat & keyof RuxIconVoiceChatAttributes]?: RuxIconVoiceChat[K] } & { [K in keyof RuxIconVoiceChat & keyof RuxIconVoiceChatAttributes as `attr:${K}`]?: RuxIconVoiceChatAttributes[K] } & { [K in keyof RuxIconVoiceChat & keyof RuxIconVoiceChatAttributes as `prop:${K}`]?: RuxIconVoiceChat[K] }; "rux-icon-voice-over-off": Omit & { [K in keyof RuxIconVoiceOverOff & keyof RuxIconVoiceOverOffAttributes]?: RuxIconVoiceOverOff[K] } & { [K in keyof RuxIconVoiceOverOff & keyof RuxIconVoiceOverOffAttributes as `attr:${K}`]?: RuxIconVoiceOverOffAttributes[K] } & { [K in keyof RuxIconVoiceOverOff & keyof RuxIconVoiceOverOffAttributes as `prop:${K}`]?: RuxIconVoiceOverOff[K] }; "rux-icon-voicemail": Omit & { [K in keyof RuxIconVoicemail & keyof RuxIconVoicemailAttributes]?: RuxIconVoicemail[K] } & { [K in keyof RuxIconVoicemail & keyof RuxIconVoicemailAttributes as `attr:${K}`]?: RuxIconVoicemailAttributes[K] } & { [K in keyof RuxIconVoicemail & keyof RuxIconVoicemailAttributes as `prop:${K}`]?: RuxIconVoicemail[K] }; "rux-icon-volume-down": Omit & { [K in keyof RuxIconVolumeDown & keyof RuxIconVolumeDownAttributes]?: RuxIconVolumeDown[K] } & { [K in keyof RuxIconVolumeDown & keyof RuxIconVolumeDownAttributes as `attr:${K}`]?: RuxIconVolumeDownAttributes[K] } & { [K in keyof RuxIconVolumeDown & keyof RuxIconVolumeDownAttributes as `prop:${K}`]?: RuxIconVolumeDown[K] }; "rux-icon-volume-mute": Omit & { [K in keyof RuxIconVolumeMute & keyof RuxIconVolumeMuteAttributes]?: RuxIconVolumeMute[K] } & { [K in keyof RuxIconVolumeMute & keyof RuxIconVolumeMuteAttributes as `attr:${K}`]?: RuxIconVolumeMuteAttributes[K] } & { [K in keyof RuxIconVolumeMute & keyof RuxIconVolumeMuteAttributes as `prop:${K}`]?: RuxIconVolumeMute[K] }; "rux-icon-volume-off": Omit & { [K in keyof RuxIconVolumeOff & keyof RuxIconVolumeOffAttributes]?: RuxIconVolumeOff[K] } & { [K in keyof RuxIconVolumeOff & keyof RuxIconVolumeOffAttributes as `attr:${K}`]?: RuxIconVolumeOffAttributes[K] } & { [K in keyof RuxIconVolumeOff & keyof RuxIconVolumeOffAttributes as `prop:${K}`]?: RuxIconVolumeOff[K] }; "rux-icon-volume-up": Omit & { [K in keyof RuxIconVolumeUp & keyof RuxIconVolumeUpAttributes]?: RuxIconVolumeUp[K] } & { [K in keyof RuxIconVolumeUp & keyof RuxIconVolumeUpAttributes as `attr:${K}`]?: RuxIconVolumeUpAttributes[K] } & { [K in keyof RuxIconVolumeUp & keyof RuxIconVolumeUpAttributes as `prop:${K}`]?: RuxIconVolumeUp[K] }; "rux-icon-vpn-key": Omit & { [K in keyof RuxIconVpnKey & keyof RuxIconVpnKeyAttributes]?: RuxIconVpnKey[K] } & { [K in keyof RuxIconVpnKey & keyof RuxIconVpnKeyAttributes as `attr:${K}`]?: RuxIconVpnKeyAttributes[K] } & { [K in keyof RuxIconVpnKey & keyof RuxIconVpnKeyAttributes as `prop:${K}`]?: RuxIconVpnKey[K] }; "rux-icon-vpn-lock": Omit & { [K in keyof RuxIconVpnLock & keyof RuxIconVpnLockAttributes]?: RuxIconVpnLock[K] } & { [K in keyof RuxIconVpnLock & keyof RuxIconVpnLockAttributes as `attr:${K}`]?: RuxIconVpnLockAttributes[K] } & { [K in keyof RuxIconVpnLock & keyof RuxIconVpnLockAttributes as `prop:${K}`]?: RuxIconVpnLock[K] }; "rux-icon-wallpaper": Omit & { [K in keyof RuxIconWallpaper & keyof RuxIconWallpaperAttributes]?: RuxIconWallpaper[K] } & { [K in keyof RuxIconWallpaper & keyof RuxIconWallpaperAttributes as `attr:${K}`]?: RuxIconWallpaperAttributes[K] } & { [K in keyof RuxIconWallpaper & keyof RuxIconWallpaperAttributes as `prop:${K}`]?: RuxIconWallpaper[K] }; "rux-icon-warning": Omit & { [K in keyof RuxIconWarning & keyof RuxIconWarningAttributes]?: RuxIconWarning[K] } & { [K in keyof RuxIconWarning & keyof RuxIconWarningAttributes as `attr:${K}`]?: RuxIconWarningAttributes[K] } & { [K in keyof RuxIconWarning & keyof RuxIconWarningAttributes as `prop:${K}`]?: RuxIconWarning[K] }; "rux-icon-watch": Omit & { [K in keyof RuxIconWatch & keyof RuxIconWatchAttributes]?: RuxIconWatch[K] } & { [K in keyof RuxIconWatch & keyof RuxIconWatchAttributes as `attr:${K}`]?: RuxIconWatchAttributes[K] } & { [K in keyof RuxIconWatch & keyof RuxIconWatchAttributes as `prop:${K}`]?: RuxIconWatch[K] }; "rux-icon-watch-later": Omit & { [K in keyof RuxIconWatchLater & keyof RuxIconWatchLaterAttributes]?: RuxIconWatchLater[K] } & { [K in keyof RuxIconWatchLater & keyof RuxIconWatchLaterAttributes as `attr:${K}`]?: RuxIconWatchLaterAttributes[K] } & { [K in keyof RuxIconWatchLater & keyof RuxIconWatchLaterAttributes as `prop:${K}`]?: RuxIconWatchLater[K] }; "rux-icon-waves": Omit & { [K in keyof RuxIconWaves & keyof RuxIconWavesAttributes]?: RuxIconWaves[K] } & { [K in keyof RuxIconWaves & keyof RuxIconWavesAttributes as `attr:${K}`]?: RuxIconWavesAttributes[K] } & { [K in keyof RuxIconWaves & keyof RuxIconWavesAttributes as `prop:${K}`]?: RuxIconWaves[K] }; "rux-icon-wb-auto": Omit & { [K in keyof RuxIconWbAuto & keyof RuxIconWbAutoAttributes]?: RuxIconWbAuto[K] } & { [K in keyof RuxIconWbAuto & keyof RuxIconWbAutoAttributes as `attr:${K}`]?: RuxIconWbAutoAttributes[K] } & { [K in keyof RuxIconWbAuto & keyof RuxIconWbAutoAttributes as `prop:${K}`]?: RuxIconWbAuto[K] }; "rux-icon-wb-cloudy": Omit & { [K in keyof RuxIconWbCloudy & keyof RuxIconWbCloudyAttributes]?: RuxIconWbCloudy[K] } & { [K in keyof RuxIconWbCloudy & keyof RuxIconWbCloudyAttributes as `attr:${K}`]?: RuxIconWbCloudyAttributes[K] } & { [K in keyof RuxIconWbCloudy & keyof RuxIconWbCloudyAttributes as `prop:${K}`]?: RuxIconWbCloudy[K] }; "rux-icon-wb-incandescent": Omit & { [K in keyof RuxIconWbIncandescent & keyof RuxIconWbIncandescentAttributes]?: RuxIconWbIncandescent[K] } & { [K in keyof RuxIconWbIncandescent & keyof RuxIconWbIncandescentAttributes as `attr:${K}`]?: RuxIconWbIncandescentAttributes[K] } & { [K in keyof RuxIconWbIncandescent & keyof RuxIconWbIncandescentAttributes as `prop:${K}`]?: RuxIconWbIncandescent[K] }; "rux-icon-wb-iridescent": Omit & { [K in keyof RuxIconWbIridescent & keyof RuxIconWbIridescentAttributes]?: RuxIconWbIridescent[K] } & { [K in keyof RuxIconWbIridescent & keyof RuxIconWbIridescentAttributes as `attr:${K}`]?: RuxIconWbIridescentAttributes[K] } & { [K in keyof RuxIconWbIridescent & keyof RuxIconWbIridescentAttributes as `prop:${K}`]?: RuxIconWbIridescent[K] }; "rux-icon-wb-sunny": Omit & { [K in keyof RuxIconWbSunny & keyof RuxIconWbSunnyAttributes]?: RuxIconWbSunny[K] } & { [K in keyof RuxIconWbSunny & keyof RuxIconWbSunnyAttributes as `attr:${K}`]?: RuxIconWbSunnyAttributes[K] } & { [K in keyof RuxIconWbSunny & keyof RuxIconWbSunnyAttributes as `prop:${K}`]?: RuxIconWbSunny[K] }; "rux-icon-wc": Omit & { [K in keyof RuxIconWc & keyof RuxIconWcAttributes]?: RuxIconWc[K] } & { [K in keyof RuxIconWc & keyof RuxIconWcAttributes as `attr:${K}`]?: RuxIconWcAttributes[K] } & { [K in keyof RuxIconWc & keyof RuxIconWcAttributes as `prop:${K}`]?: RuxIconWc[K] }; "rux-icon-web": Omit & { [K in keyof RuxIconWeb & keyof RuxIconWebAttributes]?: RuxIconWeb[K] } & { [K in keyof RuxIconWeb & keyof RuxIconWebAttributes as `attr:${K}`]?: RuxIconWebAttributes[K] } & { [K in keyof RuxIconWeb & keyof RuxIconWebAttributes as `prop:${K}`]?: RuxIconWeb[K] }; "rux-icon-web-asset": Omit & { [K in keyof RuxIconWebAsset & keyof RuxIconWebAssetAttributes]?: RuxIconWebAsset[K] } & { [K in keyof RuxIconWebAsset & keyof RuxIconWebAssetAttributes as `attr:${K}`]?: RuxIconWebAssetAttributes[K] } & { [K in keyof RuxIconWebAsset & keyof RuxIconWebAssetAttributes as `prop:${K}`]?: RuxIconWebAsset[K] }; "rux-icon-weekend": Omit & { [K in keyof RuxIconWeekend & keyof RuxIconWeekendAttributes]?: RuxIconWeekend[K] } & { [K in keyof RuxIconWeekend & keyof RuxIconWeekendAttributes as `attr:${K}`]?: RuxIconWeekendAttributes[K] } & { [K in keyof RuxIconWeekend & keyof RuxIconWeekendAttributes as `prop:${K}`]?: RuxIconWeekend[K] }; "rux-icon-whatshot": Omit & { [K in keyof RuxIconWhatshot & keyof RuxIconWhatshotAttributes]?: RuxIconWhatshot[K] } & { [K in keyof RuxIconWhatshot & keyof RuxIconWhatshotAttributes as `attr:${K}`]?: RuxIconWhatshotAttributes[K] } & { [K in keyof RuxIconWhatshot & keyof RuxIconWhatshotAttributes as `prop:${K}`]?: RuxIconWhatshot[K] }; "rux-icon-where-to-vote": Omit & { [K in keyof RuxIconWhereToVote & keyof RuxIconWhereToVoteAttributes]?: RuxIconWhereToVote[K] } & { [K in keyof RuxIconWhereToVote & keyof RuxIconWhereToVoteAttributes as `attr:${K}`]?: RuxIconWhereToVoteAttributes[K] } & { [K in keyof RuxIconWhereToVote & keyof RuxIconWhereToVoteAttributes as `prop:${K}`]?: RuxIconWhereToVote[K] }; "rux-icon-widgets": Omit & { [K in keyof RuxIconWidgets & keyof RuxIconWidgetsAttributes]?: RuxIconWidgets[K] } & { [K in keyof RuxIconWidgets & keyof RuxIconWidgetsAttributes as `attr:${K}`]?: RuxIconWidgetsAttributes[K] } & { [K in keyof RuxIconWidgets & keyof RuxIconWidgetsAttributes as `prop:${K}`]?: RuxIconWidgets[K] }; "rux-icon-wifi": Omit & { [K in keyof RuxIconWifi & keyof RuxIconWifiAttributes]?: RuxIconWifi[K] } & { [K in keyof RuxIconWifi & keyof RuxIconWifiAttributes as `attr:${K}`]?: RuxIconWifiAttributes[K] } & { [K in keyof RuxIconWifi & keyof RuxIconWifiAttributes as `prop:${K}`]?: RuxIconWifi[K] }; "rux-icon-wifi-lock": Omit & { [K in keyof RuxIconWifiLock & keyof RuxIconWifiLockAttributes]?: RuxIconWifiLock[K] } & { [K in keyof RuxIconWifiLock & keyof RuxIconWifiLockAttributes as `attr:${K}`]?: RuxIconWifiLockAttributes[K] } & { [K in keyof RuxIconWifiLock & keyof RuxIconWifiLockAttributes as `prop:${K}`]?: RuxIconWifiLock[K] }; "rux-icon-wifi-off": Omit & { [K in keyof RuxIconWifiOff & keyof RuxIconWifiOffAttributes]?: RuxIconWifiOff[K] } & { [K in keyof RuxIconWifiOff & keyof RuxIconWifiOffAttributes as `attr:${K}`]?: RuxIconWifiOffAttributes[K] } & { [K in keyof RuxIconWifiOff & keyof RuxIconWifiOffAttributes as `prop:${K}`]?: RuxIconWifiOff[K] }; "rux-icon-wifi-tethering": Omit & { [K in keyof RuxIconWifiTethering & keyof RuxIconWifiTetheringAttributes]?: RuxIconWifiTethering[K] } & { [K in keyof RuxIconWifiTethering & keyof RuxIconWifiTetheringAttributes as `attr:${K}`]?: RuxIconWifiTetheringAttributes[K] } & { [K in keyof RuxIconWifiTethering & keyof RuxIconWifiTetheringAttributes as `prop:${K}`]?: RuxIconWifiTethering[K] }; "rux-icon-work": Omit & { [K in keyof RuxIconWork & keyof RuxIconWorkAttributes]?: RuxIconWork[K] } & { [K in keyof RuxIconWork & keyof RuxIconWorkAttributes as `attr:${K}`]?: RuxIconWorkAttributes[K] } & { [K in keyof RuxIconWork & keyof RuxIconWorkAttributes as `prop:${K}`]?: RuxIconWork[K] }; "rux-icon-work-off": Omit & { [K in keyof RuxIconWorkOff & keyof RuxIconWorkOffAttributes]?: RuxIconWorkOff[K] } & { [K in keyof RuxIconWorkOff & keyof RuxIconWorkOffAttributes as `attr:${K}`]?: RuxIconWorkOffAttributes[K] } & { [K in keyof RuxIconWorkOff & keyof RuxIconWorkOffAttributes as `prop:${K}`]?: RuxIconWorkOff[K] }; "rux-icon-work-outline": Omit & { [K in keyof RuxIconWorkOutline & keyof RuxIconWorkOutlineAttributes]?: RuxIconWorkOutline[K] } & { [K in keyof RuxIconWorkOutline & keyof RuxIconWorkOutlineAttributes as `attr:${K}`]?: RuxIconWorkOutlineAttributes[K] } & { [K in keyof RuxIconWorkOutline & keyof RuxIconWorkOutlineAttributes as `prop:${K}`]?: RuxIconWorkOutline[K] }; "rux-icon-wrap-text": Omit & { [K in keyof RuxIconWrapText & keyof RuxIconWrapTextAttributes]?: RuxIconWrapText[K] } & { [K in keyof RuxIconWrapText & keyof RuxIconWrapTextAttributes as `attr:${K}`]?: RuxIconWrapTextAttributes[K] } & { [K in keyof RuxIconWrapText & keyof RuxIconWrapTextAttributes as `prop:${K}`]?: RuxIconWrapText[K] }; "rux-icon-youtube-searched-for": Omit & { [K in keyof RuxIconYoutubeSearchedFor & keyof RuxIconYoutubeSearchedForAttributes]?: RuxIconYoutubeSearchedFor[K] } & { [K in keyof RuxIconYoutubeSearchedFor & keyof RuxIconYoutubeSearchedForAttributes as `attr:${K}`]?: RuxIconYoutubeSearchedForAttributes[K] } & { [K in keyof RuxIconYoutubeSearchedFor & keyof RuxIconYoutubeSearchedForAttributes as `prop:${K}`]?: RuxIconYoutubeSearchedFor[K] }; "rux-icon-zoom-in": Omit & { [K in keyof RuxIconZoomIn & keyof RuxIconZoomInAttributes]?: RuxIconZoomIn[K] } & { [K in keyof RuxIconZoomIn & keyof RuxIconZoomInAttributes as `attr:${K}`]?: RuxIconZoomInAttributes[K] } & { [K in keyof RuxIconZoomIn & keyof RuxIconZoomInAttributes as `prop:${K}`]?: RuxIconZoomIn[K] }; "rux-icon-zoom-in-map": Omit & { [K in keyof RuxIconZoomInMap & keyof RuxIconZoomInMapAttributes]?: RuxIconZoomInMap[K] } & { [K in keyof RuxIconZoomInMap & keyof RuxIconZoomInMapAttributes as `attr:${K}`]?: RuxIconZoomInMapAttributes[K] } & { [K in keyof RuxIconZoomInMap & keyof RuxIconZoomInMapAttributes as `prop:${K}`]?: RuxIconZoomInMap[K] }; "rux-icon-zoom-out": Omit & { [K in keyof RuxIconZoomOut & keyof RuxIconZoomOutAttributes]?: RuxIconZoomOut[K] } & { [K in keyof RuxIconZoomOut & keyof RuxIconZoomOutAttributes as `attr:${K}`]?: RuxIconZoomOutAttributes[K] } & { [K in keyof RuxIconZoomOut & keyof RuxIconZoomOutAttributes as `prop:${K}`]?: RuxIconZoomOut[K] }; "rux-icon-zoom-out-map": Omit & { [K in keyof RuxIconZoomOutMap & keyof RuxIconZoomOutMapAttributes]?: RuxIconZoomOutMap[K] } & { [K in keyof RuxIconZoomOutMap & keyof RuxIconZoomOutMapAttributes as `attr:${K}`]?: RuxIconZoomOutMapAttributes[K] } & { [K in keyof RuxIconZoomOutMap & keyof RuxIconZoomOutMapAttributes as `prop:${K}`]?: RuxIconZoomOutMap[K] }; "rux-indeterminate-progress": RuxIndeterminateProgress; "rux-input": Omit & { [K in keyof RuxInput & keyof RuxInputAttributes]?: RuxInput[K] } & { [K in keyof RuxInput & keyof RuxInputAttributes as `attr:${K}`]?: RuxInputAttributes[K] } & { [K in keyof RuxInput & keyof RuxInputAttributes as `prop:${K}`]?: RuxInput[K] }; "rux-log": Omit & { [K in keyof RuxLog & keyof RuxLogAttributes]?: RuxLog[K] } & { [K in keyof RuxLog & keyof RuxLogAttributes as `attr:${K}`]?: RuxLogAttributes[K] } & { [K in keyof RuxLog & keyof RuxLogAttributes as `prop:${K}`]?: RuxLog[K] }; "rux-menu": RuxMenu; "rux-menu-item": Omit & { [K in keyof RuxMenuItem & keyof RuxMenuItemAttributes]?: RuxMenuItem[K] } & { [K in keyof RuxMenuItem & keyof RuxMenuItemAttributes as `attr:${K}`]?: RuxMenuItemAttributes[K] } & { [K in keyof RuxMenuItem & keyof RuxMenuItemAttributes as `prop:${K}`]?: RuxMenuItem[K] }; "rux-menu-item-divider": RuxMenuItemDivider; "rux-monitoring-icon": Omit & { [K in keyof RuxMonitoringIcon & keyof RuxMonitoringIconAttributes]?: RuxMonitoringIcon[K] } & { [K in keyof RuxMonitoringIcon & keyof RuxMonitoringIconAttributes as `attr:${K}`]?: RuxMonitoringIconAttributes[K] } & { [K in keyof RuxMonitoringIcon & keyof RuxMonitoringIconAttributes as `prop:${K}`]?: RuxMonitoringIcon[K] } & OneOf<"label", RuxMonitoringIcon["label"], RuxMonitoringIconAttributes["label"]>; "rux-monitoring-progress-icon": Omit & { [K in keyof RuxMonitoringProgressIcon & keyof RuxMonitoringProgressIconAttributes]?: RuxMonitoringProgressIcon[K] } & { [K in keyof RuxMonitoringProgressIcon & keyof RuxMonitoringProgressIconAttributes as `attr:${K}`]?: RuxMonitoringProgressIconAttributes[K] } & { [K in keyof RuxMonitoringProgressIcon & keyof RuxMonitoringProgressIconAttributes as `prop:${K}`]?: RuxMonitoringProgressIcon[K] }; "rux-notification": Omit & { [K in keyof RuxNotification & keyof RuxNotificationAttributes]?: RuxNotification[K] } & { [K in keyof RuxNotification & keyof RuxNotificationAttributes as `attr:${K}`]?: RuxNotificationAttributes[K] } & { [K in keyof RuxNotification & keyof RuxNotificationAttributes as `prop:${K}`]?: RuxNotification[K] }; "rux-option": Omit & { [K in keyof RuxOption & keyof RuxOptionAttributes]?: RuxOption[K] } & { [K in keyof RuxOption & keyof RuxOptionAttributes as `attr:${K}`]?: RuxOptionAttributes[K] } & { [K in keyof RuxOption & keyof RuxOptionAttributes as `prop:${K}`]?: RuxOption[K] } & OneOf<"value", RuxOption["value"], RuxOptionAttributes["value"]> & OneOf<"label", RuxOption["label"], RuxOptionAttributes["label"]>; "rux-option-group": Omit & { [K in keyof RuxOptionGroup & keyof RuxOptionGroupAttributes]?: RuxOptionGroup[K] } & { [K in keyof RuxOptionGroup & keyof RuxOptionGroupAttributes as `attr:${K}`]?: RuxOptionGroupAttributes[K] } & { [K in keyof RuxOptionGroup & keyof RuxOptionGroupAttributes as `prop:${K}`]?: RuxOptionGroup[K] }; "rux-pop-up": Omit & { [K in keyof RuxPopUp & keyof RuxPopUpAttributes]?: RuxPopUp[K] } & { [K in keyof RuxPopUp & keyof RuxPopUpAttributes as `attr:${K}`]?: RuxPopUpAttributes[K] } & { [K in keyof RuxPopUp & keyof RuxPopUpAttributes as `prop:${K}`]?: RuxPopUp[K] }; "rux-progress": Omit & { [K in keyof RuxProgress & keyof RuxProgressAttributes]?: RuxProgress[K] } & { [K in keyof RuxProgress & keyof RuxProgressAttributes as `attr:${K}`]?: RuxProgressAttributes[K] } & { [K in keyof RuxProgress & keyof RuxProgressAttributes as `prop:${K}`]?: RuxProgress[K] }; "rux-push-button": Omit & { [K in keyof RuxPushButton & keyof RuxPushButtonAttributes]?: RuxPushButton[K] } & { [K in keyof RuxPushButton & keyof RuxPushButtonAttributes as `attr:${K}`]?: RuxPushButtonAttributes[K] } & { [K in keyof RuxPushButton & keyof RuxPushButtonAttributes as `prop:${K}`]?: RuxPushButton[K] }; "rux-radio": Omit & { [K in keyof RuxRadio & keyof RuxRadioAttributes]?: RuxRadio[K] } & { [K in keyof RuxRadio & keyof RuxRadioAttributes as `attr:${K}`]?: RuxRadioAttributes[K] } & { [K in keyof RuxRadio & keyof RuxRadioAttributes as `prop:${K}`]?: RuxRadio[K] }; "rux-radio-group": Omit & { [K in keyof RuxRadioGroup & keyof RuxRadioGroupAttributes]?: RuxRadioGroup[K] } & { [K in keyof RuxRadioGroup & keyof RuxRadioGroupAttributes as `attr:${K}`]?: RuxRadioGroupAttributes[K] } & { [K in keyof RuxRadioGroup & keyof RuxRadioGroupAttributes as `prop:${K}`]?: RuxRadioGroup[K] }; "rux-ruler": Omit & { [K in keyof RuxRuler & keyof RuxRulerAttributes]?: RuxRuler[K] } & { [K in keyof RuxRuler & keyof RuxRulerAttributes as `attr:${K}`]?: RuxRulerAttributes[K] } & { [K in keyof RuxRuler & keyof RuxRulerAttributes as `prop:${K}`]?: RuxRuler[K] }; "rux-segmented-button": Omit & { [K in keyof RuxSegmentedButton & keyof RuxSegmentedButtonAttributes]?: RuxSegmentedButton[K] } & { [K in keyof RuxSegmentedButton & keyof RuxSegmentedButtonAttributes as `attr:${K}`]?: RuxSegmentedButtonAttributes[K] } & { [K in keyof RuxSegmentedButton & keyof RuxSegmentedButtonAttributes as `prop:${K}`]?: RuxSegmentedButton[K] }; "rux-select": Omit & { [K in keyof RuxSelect & keyof RuxSelectAttributes]?: RuxSelect[K] } & { [K in keyof RuxSelect & keyof RuxSelectAttributes as `attr:${K}`]?: RuxSelectAttributes[K] } & { [K in keyof RuxSelect & keyof RuxSelectAttributes as `prop:${K}`]?: RuxSelect[K] }; "rux-slider": Omit & { [K in keyof RuxSlider & keyof RuxSliderAttributes]?: RuxSlider[K] } & { [K in keyof RuxSlider & keyof RuxSliderAttributes as `attr:${K}`]?: RuxSliderAttributes[K] } & { [K in keyof RuxSlider & keyof RuxSliderAttributes as `prop:${K}`]?: RuxSlider[K] }; "rux-status": Omit & { [K in keyof RuxStatus & keyof RuxStatusAttributes]?: RuxStatus[K] } & { [K in keyof RuxStatus & keyof RuxStatusAttributes as `attr:${K}`]?: RuxStatusAttributes[K] } & { [K in keyof RuxStatus & keyof RuxStatusAttributes as `prop:${K}`]?: RuxStatus[K] }; "rux-switch": Omit & { [K in keyof RuxSwitch & keyof RuxSwitchAttributes]?: RuxSwitch[K] } & { [K in keyof RuxSwitch & keyof RuxSwitchAttributes as `attr:${K}`]?: RuxSwitchAttributes[K] } & { [K in keyof RuxSwitch & keyof RuxSwitchAttributes as `prop:${K}`]?: RuxSwitch[K] }; "rux-tab": Omit & { [K in keyof RuxTab & keyof RuxTabAttributes]?: RuxTab[K] } & { [K in keyof RuxTab & keyof RuxTabAttributes as `attr:${K}`]?: RuxTabAttributes[K] } & { [K in keyof RuxTab & keyof RuxTabAttributes as `prop:${K}`]?: RuxTab[K] }; "rux-tab-panel": RuxTabPanel; "rux-tab-panels": RuxTabPanels; "rux-table": RuxTable; "rux-table-body": RuxTableBody; "rux-table-cell": RuxTableCell; "rux-table-header": RuxTableHeader; "rux-table-header-cell": RuxTableHeaderCell; "rux-table-header-row": RuxTableHeaderRow; "rux-table-row": Omit & { [K in keyof RuxTableRow & keyof RuxTableRowAttributes]?: RuxTableRow[K] } & { [K in keyof RuxTableRow & keyof RuxTableRowAttributes as `attr:${K}`]?: RuxTableRowAttributes[K] } & { [K in keyof RuxTableRow & keyof RuxTableRowAttributes as `prop:${K}`]?: RuxTableRow[K] }; "rux-tabs": Omit & { [K in keyof RuxTabs & keyof RuxTabsAttributes]?: RuxTabs[K] } & { [K in keyof RuxTabs & keyof RuxTabsAttributes as `attr:${K}`]?: RuxTabsAttributes[K] } & { [K in keyof RuxTabs & keyof RuxTabsAttributes as `prop:${K}`]?: RuxTabs[K] }; "rux-tag": Omit & { [K in keyof RuxTag & keyof RuxTagAttributes]?: RuxTag[K] } & { [K in keyof RuxTag & keyof RuxTagAttributes as `attr:${K}`]?: RuxTagAttributes[K] } & { [K in keyof RuxTag & keyof RuxTagAttributes as `prop:${K}`]?: RuxTag[K] }; "rux-textarea": Omit & { [K in keyof RuxTextarea & keyof RuxTextareaAttributes]?: RuxTextarea[K] } & { [K in keyof RuxTextarea & keyof RuxTextareaAttributes as `attr:${K}`]?: RuxTextareaAttributes[K] } & { [K in keyof RuxTextarea & keyof RuxTextareaAttributes as `prop:${K}`]?: RuxTextarea[K] }; "rux-time-region": Omit & { [K in keyof RuxTimeRegion & keyof RuxTimeRegionAttributes]?: RuxTimeRegion[K] } & { [K in keyof RuxTimeRegion & keyof RuxTimeRegionAttributes as `attr:${K}`]?: RuxTimeRegionAttributes[K] } & { [K in keyof RuxTimeRegion & keyof RuxTimeRegionAttributes as `prop:${K}`]?: RuxTimeRegion[K] }; "rux-timeline": Omit & { [K in keyof RuxTimeline & keyof RuxTimelineAttributes]?: RuxTimeline[K] } & { [K in keyof RuxTimeline & keyof RuxTimelineAttributes as `attr:${K}`]?: RuxTimelineAttributes[K] } & { [K in keyof RuxTimeline & keyof RuxTimelineAttributes as `prop:${K}`]?: RuxTimeline[K] }; "rux-toast": Omit & { [K in keyof RuxToast & keyof RuxToastAttributes]?: RuxToast[K] } & { [K in keyof RuxToast & keyof RuxToastAttributes as `attr:${K}`]?: RuxToastAttributes[K] } & { [K in keyof RuxToast & keyof RuxToastAttributes as `prop:${K}`]?: RuxToast[K] }; "rux-toast-stack": Omit & { [K in keyof RuxToastStack & keyof RuxToastStackAttributes]?: RuxToastStack[K] } & { [K in keyof RuxToastStack & keyof RuxToastStackAttributes as `attr:${K}`]?: RuxToastStackAttributes[K] } & { [K in keyof RuxToastStack & keyof RuxToastStackAttributes as `prop:${K}`]?: RuxToastStack[K] }; "rux-tooltip": Omit & { [K in keyof RuxTooltip & keyof RuxTooltipAttributes]?: RuxTooltip[K] } & { [K in keyof RuxTooltip & keyof RuxTooltipAttributes as `attr:${K}`]?: RuxTooltipAttributes[K] } & { [K in keyof RuxTooltip & keyof RuxTooltipAttributes as `prop:${K}`]?: RuxTooltip[K] }; "rux-track": Omit & { [K in keyof RuxTrack & keyof RuxTrackAttributes]?: RuxTrack[K] } & { [K in keyof RuxTrack & keyof RuxTrackAttributes as `attr:${K}`]?: RuxTrackAttributes[K] } & { [K in keyof RuxTrack & keyof RuxTrackAttributes as `prop:${K}`]?: RuxTrack[K] }; "rux-tree": RuxTree; "rux-tree-node": Omit & { [K in keyof RuxTreeNode & keyof RuxTreeNodeAttributes]?: RuxTreeNode[K] } & { [K in keyof RuxTreeNode & keyof RuxTreeNodeAttributes as `attr:${K}`]?: RuxTreeNodeAttributes[K] } & { [K in keyof RuxTreeNode & keyof RuxTreeNodeAttributes as `prop:${K}`]?: RuxTreeNode[K] }; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "rux-accordion": LocalJSX.IntrinsicElements["rux-accordion"] & JSXBase.HTMLAttributes; "rux-accordion-item": LocalJSX.IntrinsicElements["rux-accordion-item"] & JSXBase.HTMLAttributes; "rux-breadcrumb": LocalJSX.IntrinsicElements["rux-breadcrumb"] & JSXBase.HTMLAttributes; "rux-breadcrumb-item": LocalJSX.IntrinsicElements["rux-breadcrumb-item"] & JSXBase.HTMLAttributes; "rux-button": LocalJSX.IntrinsicElements["rux-button"] & JSXBase.HTMLAttributes; /** * @deprecated Button Group is deprecated and will be removed in a next major release. * Instead, you should use `flex` or `grid` in combination with our spacing design tokens. */ "rux-button-group": LocalJSX.IntrinsicElements["rux-button-group"] & JSXBase.HTMLAttributes; "rux-card": LocalJSX.IntrinsicElements["rux-card"] & JSXBase.HTMLAttributes; "rux-checkbox": LocalJSX.IntrinsicElements["rux-checkbox"] & JSXBase.HTMLAttributes; "rux-checkbox-group": LocalJSX.IntrinsicElements["rux-checkbox-group"] & JSXBase.HTMLAttributes; "rux-classification-marking": LocalJSX.IntrinsicElements["rux-classification-marking"] & JSXBase.HTMLAttributes; "rux-clock": LocalJSX.IntrinsicElements["rux-clock"] & JSXBase.HTMLAttributes; "rux-container": LocalJSX.IntrinsicElements["rux-container"] & JSXBase.HTMLAttributes; "rux-datetime": LocalJSX.IntrinsicElements["rux-datetime"] & JSXBase.HTMLAttributes; "rux-dialog": LocalJSX.IntrinsicElements["rux-dialog"] & JSXBase.HTMLAttributes; "rux-global-status-bar": LocalJSX.IntrinsicElements["rux-global-status-bar"] & JSXBase.HTMLAttributes; "rux-icon": LocalJSX.IntrinsicElements["rux-icon"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-360": LocalJSX.IntrinsicElements["rux-icon-360"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-3d-rotation": LocalJSX.IntrinsicElements["rux-icon-3d-rotation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-4k": LocalJSX.IntrinsicElements["rux-icon-4k"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-ac-unit": LocalJSX.IntrinsicElements["rux-icon-ac-unit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-access-alarms": LocalJSX.IntrinsicElements["rux-icon-access-alarms"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-access-time": LocalJSX.IntrinsicElements["rux-icon-access-time"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-accessibility": LocalJSX.IntrinsicElements["rux-icon-accessibility"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-accessibility-new": LocalJSX.IntrinsicElements["rux-icon-accessibility-new"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-accessible": LocalJSX.IntrinsicElements["rux-icon-accessible"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-accessible-forward": LocalJSX.IntrinsicElements["rux-icon-accessible-forward"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-account-balance": LocalJSX.IntrinsicElements["rux-icon-account-balance"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-account-balance-wallet": LocalJSX.IntrinsicElements["rux-icon-account-balance-wallet"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-account-box": LocalJSX.IntrinsicElements["rux-icon-account-box"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-account-circle": LocalJSX.IntrinsicElements["rux-icon-account-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-adb": LocalJSX.IntrinsicElements["rux-icon-adb"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add": LocalJSX.IntrinsicElements["rux-icon-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-a-photo": LocalJSX.IntrinsicElements["rux-icon-add-a-photo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-alarm": LocalJSX.IntrinsicElements["rux-icon-add-alarm"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-alert": LocalJSX.IntrinsicElements["rux-icon-add-alert"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-box": LocalJSX.IntrinsicElements["rux-icon-add-box"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-circle": LocalJSX.IntrinsicElements["rux-icon-add-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-circle-outline": LocalJSX.IntrinsicElements["rux-icon-add-circle-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-comment": LocalJSX.IntrinsicElements["rux-icon-add-comment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-location": LocalJSX.IntrinsicElements["rux-icon-add-location"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-photo-alternate": LocalJSX.IntrinsicElements["rux-icon-add-photo-alternate"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-shopping-cart": LocalJSX.IntrinsicElements["rux-icon-add-shopping-cart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-to-home-screen": LocalJSX.IntrinsicElements["rux-icon-add-to-home-screen"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-to-photos": LocalJSX.IntrinsicElements["rux-icon-add-to-photos"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-add-to-queue": LocalJSX.IntrinsicElements["rux-icon-add-to-queue"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-adjust": LocalJSX.IntrinsicElements["rux-icon-adjust"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-flat": LocalJSX.IntrinsicElements["rux-icon-airline-seat-flat"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-flat-angled": LocalJSX.IntrinsicElements["rux-icon-airline-seat-flat-angled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-individual-suite": LocalJSX.IntrinsicElements["rux-icon-airline-seat-individual-suite"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-legroom-extra": LocalJSX.IntrinsicElements["rux-icon-airline-seat-legroom-extra"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-legroom-normal": LocalJSX.IntrinsicElements["rux-icon-airline-seat-legroom-normal"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-legroom-reduced": LocalJSX.IntrinsicElements["rux-icon-airline-seat-legroom-reduced"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-recline-extra": LocalJSX.IntrinsicElements["rux-icon-airline-seat-recline-extra"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airline-seat-recline-normal": LocalJSX.IntrinsicElements["rux-icon-airline-seat-recline-normal"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airplanemode-active": LocalJSX.IntrinsicElements["rux-icon-airplanemode-active"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airplanemode-inactive": LocalJSX.IntrinsicElements["rux-icon-airplanemode-inactive"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airplay": LocalJSX.IntrinsicElements["rux-icon-airplay"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-airport-shuttle": LocalJSX.IntrinsicElements["rux-icon-airport-shuttle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-alarm": LocalJSX.IntrinsicElements["rux-icon-alarm"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-alarm-add": LocalJSX.IntrinsicElements["rux-icon-alarm-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-alarm-off": LocalJSX.IntrinsicElements["rux-icon-alarm-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-alarm-on": LocalJSX.IntrinsicElements["rux-icon-alarm-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-album": LocalJSX.IntrinsicElements["rux-icon-album"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-all-inbox": LocalJSX.IntrinsicElements["rux-icon-all-inbox"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-all-inclusive": LocalJSX.IntrinsicElements["rux-icon-all-inclusive"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-all-out": LocalJSX.IntrinsicElements["rux-icon-all-out"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-alternate-email": LocalJSX.IntrinsicElements["rux-icon-alternate-email"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-altitude": LocalJSX.IntrinsicElements["rux-icon-altitude"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-android": LocalJSX.IntrinsicElements["rux-icon-android"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-announcement": LocalJSX.IntrinsicElements["rux-icon-announcement"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-antenna": LocalJSX.IntrinsicElements["rux-icon-antenna"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-antenna-off": LocalJSX.IntrinsicElements["rux-icon-antenna-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-antenna-receive": LocalJSX.IntrinsicElements["rux-icon-antenna-receive"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-antenna-transmit": LocalJSX.IntrinsicElements["rux-icon-antenna-transmit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-apps": LocalJSX.IntrinsicElements["rux-icon-apps"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-archive": LocalJSX.IntrinsicElements["rux-icon-archive"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-back": LocalJSX.IntrinsicElements["rux-icon-arrow-back"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-back-ios": LocalJSX.IntrinsicElements["rux-icon-arrow-back-ios"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-downward": LocalJSX.IntrinsicElements["rux-icon-arrow-downward"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-drop-down": LocalJSX.IntrinsicElements["rux-icon-arrow-drop-down"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-drop-down-circle": LocalJSX.IntrinsicElements["rux-icon-arrow-drop-down-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-drop-up": LocalJSX.IntrinsicElements["rux-icon-arrow-drop-up"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-forward": LocalJSX.IntrinsicElements["rux-icon-arrow-forward"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-forward-ios": LocalJSX.IntrinsicElements["rux-icon-arrow-forward-ios"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-left": LocalJSX.IntrinsicElements["rux-icon-arrow-left"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-right": LocalJSX.IntrinsicElements["rux-icon-arrow-right"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-right-alt": LocalJSX.IntrinsicElements["rux-icon-arrow-right-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-arrow-upward": LocalJSX.IntrinsicElements["rux-icon-arrow-upward"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-art-track": LocalJSX.IntrinsicElements["rux-icon-art-track"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-aspect-ratio": LocalJSX.IntrinsicElements["rux-icon-aspect-ratio"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assessment": LocalJSX.IntrinsicElements["rux-icon-assessment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assignment": LocalJSX.IntrinsicElements["rux-icon-assignment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assignment-find": LocalJSX.IntrinsicElements["rux-icon-assignment-find"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assignment-late": LocalJSX.IntrinsicElements["rux-icon-assignment-late"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assignment-return": LocalJSX.IntrinsicElements["rux-icon-assignment-return"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assignment-returned": LocalJSX.IntrinsicElements["rux-icon-assignment-returned"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assignment-turned-in": LocalJSX.IntrinsicElements["rux-icon-assignment-turned-in"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assistant": LocalJSX.IntrinsicElements["rux-icon-assistant"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-assistant-photo": LocalJSX.IntrinsicElements["rux-icon-assistant-photo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-attach-file": LocalJSX.IntrinsicElements["rux-icon-attach-file"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-attach-money": LocalJSX.IntrinsicElements["rux-icon-attach-money"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-attachment": LocalJSX.IntrinsicElements["rux-icon-attachment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-audiotrack": LocalJSX.IntrinsicElements["rux-icon-audiotrack"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-autorenew": LocalJSX.IntrinsicElements["rux-icon-autorenew"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-av-timer": LocalJSX.IntrinsicElements["rux-icon-av-timer"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-backspace": LocalJSX.IntrinsicElements["rux-icon-backspace"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-backup": LocalJSX.IntrinsicElements["rux-icon-backup"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-ballot": LocalJSX.IntrinsicElements["rux-icon-ballot"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bar-chart": LocalJSX.IntrinsicElements["rux-icon-bar-chart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-20": LocalJSX.IntrinsicElements["rux-icon-battery-20"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-30": LocalJSX.IntrinsicElements["rux-icon-battery-30"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-50": LocalJSX.IntrinsicElements["rux-icon-battery-50"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-60": LocalJSX.IntrinsicElements["rux-icon-battery-60"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-80": LocalJSX.IntrinsicElements["rux-icon-battery-80"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-90": LocalJSX.IntrinsicElements["rux-icon-battery-90"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-alert": LocalJSX.IntrinsicElements["rux-icon-battery-alert"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-charging-20": LocalJSX.IntrinsicElements["rux-icon-battery-charging-20"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-charging-30": LocalJSX.IntrinsicElements["rux-icon-battery-charging-30"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-charging-50": LocalJSX.IntrinsicElements["rux-icon-battery-charging-50"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-charging-60": LocalJSX.IntrinsicElements["rux-icon-battery-charging-60"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-charging-80": LocalJSX.IntrinsicElements["rux-icon-battery-charging-80"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-charging-90": LocalJSX.IntrinsicElements["rux-icon-battery-charging-90"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-charging-full": LocalJSX.IntrinsicElements["rux-icon-battery-charging-full"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-full": LocalJSX.IntrinsicElements["rux-icon-battery-full"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-std": LocalJSX.IntrinsicElements["rux-icon-battery-std"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-battery-unknown": LocalJSX.IntrinsicElements["rux-icon-battery-unknown"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-beach-access": LocalJSX.IntrinsicElements["rux-icon-beach-access"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-beenhere": LocalJSX.IntrinsicElements["rux-icon-beenhere"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-block": LocalJSX.IntrinsicElements["rux-icon-block"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bluetooth": LocalJSX.IntrinsicElements["rux-icon-bluetooth"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bluetooth-audio": LocalJSX.IntrinsicElements["rux-icon-bluetooth-audio"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bluetooth-connected": LocalJSX.IntrinsicElements["rux-icon-bluetooth-connected"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bluetooth-disabled": LocalJSX.IntrinsicElements["rux-icon-bluetooth-disabled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bluetooth-searching": LocalJSX.IntrinsicElements["rux-icon-bluetooth-searching"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-blur-circular": LocalJSX.IntrinsicElements["rux-icon-blur-circular"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-blur-linear": LocalJSX.IntrinsicElements["rux-icon-blur-linear"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-blur-off": LocalJSX.IntrinsicElements["rux-icon-blur-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-blur-on": LocalJSX.IntrinsicElements["rux-icon-blur-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-book": LocalJSX.IntrinsicElements["rux-icon-book"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bookmark": LocalJSX.IntrinsicElements["rux-icon-bookmark"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bookmark-border": LocalJSX.IntrinsicElements["rux-icon-bookmark-border"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bookmarks": LocalJSX.IntrinsicElements["rux-icon-bookmarks"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-all": LocalJSX.IntrinsicElements["rux-icon-border-all"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-bottom": LocalJSX.IntrinsicElements["rux-icon-border-bottom"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-clear": LocalJSX.IntrinsicElements["rux-icon-border-clear"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-color": LocalJSX.IntrinsicElements["rux-icon-border-color"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-horizontal": LocalJSX.IntrinsicElements["rux-icon-border-horizontal"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-inner": LocalJSX.IntrinsicElements["rux-icon-border-inner"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-left": LocalJSX.IntrinsicElements["rux-icon-border-left"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-outer": LocalJSX.IntrinsicElements["rux-icon-border-outer"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-right": LocalJSX.IntrinsicElements["rux-icon-border-right"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-style": LocalJSX.IntrinsicElements["rux-icon-border-style"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-top": LocalJSX.IntrinsicElements["rux-icon-border-top"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-border-vertical": LocalJSX.IntrinsicElements["rux-icon-border-vertical"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-branding-watermark": LocalJSX.IntrinsicElements["rux-icon-branding-watermark"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-1": LocalJSX.IntrinsicElements["rux-icon-brightness-1"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-2": LocalJSX.IntrinsicElements["rux-icon-brightness-2"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-3": LocalJSX.IntrinsicElements["rux-icon-brightness-3"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-4": LocalJSX.IntrinsicElements["rux-icon-brightness-4"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-5": LocalJSX.IntrinsicElements["rux-icon-brightness-5"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-6": LocalJSX.IntrinsicElements["rux-icon-brightness-6"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-7": LocalJSX.IntrinsicElements["rux-icon-brightness-7"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-auto": LocalJSX.IntrinsicElements["rux-icon-brightness-auto"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-high": LocalJSX.IntrinsicElements["rux-icon-brightness-high"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-low": LocalJSX.IntrinsicElements["rux-icon-brightness-low"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brightness-medium": LocalJSX.IntrinsicElements["rux-icon-brightness-medium"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-broken-image": LocalJSX.IntrinsicElements["rux-icon-broken-image"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-brush": LocalJSX.IntrinsicElements["rux-icon-brush"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bubble-chart": LocalJSX.IntrinsicElements["rux-icon-bubble-chart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-bug-report": LocalJSX.IntrinsicElements["rux-icon-bug-report"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-build": LocalJSX.IntrinsicElements["rux-icon-build"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-burst-mode": LocalJSX.IntrinsicElements["rux-icon-burst-mode"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-business": LocalJSX.IntrinsicElements["rux-icon-business"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-business-center": LocalJSX.IntrinsicElements["rux-icon-business-center"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cached": LocalJSX.IntrinsicElements["rux-icon-cached"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cake": LocalJSX.IntrinsicElements["rux-icon-cake"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-calendar-today": LocalJSX.IntrinsicElements["rux-icon-calendar-today"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-calendar-view-day": LocalJSX.IntrinsicElements["rux-icon-calendar-view-day"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call": LocalJSX.IntrinsicElements["rux-icon-call"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-end": LocalJSX.IntrinsicElements["rux-icon-call-end"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-made": LocalJSX.IntrinsicElements["rux-icon-call-made"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-merge": LocalJSX.IntrinsicElements["rux-icon-call-merge"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-missed": LocalJSX.IntrinsicElements["rux-icon-call-missed"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-missed-outgoing": LocalJSX.IntrinsicElements["rux-icon-call-missed-outgoing"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-received": LocalJSX.IntrinsicElements["rux-icon-call-received"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-split": LocalJSX.IntrinsicElements["rux-icon-call-split"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-call-to-action": LocalJSX.IntrinsicElements["rux-icon-call-to-action"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-camera": LocalJSX.IntrinsicElements["rux-icon-camera"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-camera-alt": LocalJSX.IntrinsicElements["rux-icon-camera-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-camera-enhance": LocalJSX.IntrinsicElements["rux-icon-camera-enhance"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-camera-front": LocalJSX.IntrinsicElements["rux-icon-camera-front"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-camera-rear": LocalJSX.IntrinsicElements["rux-icon-camera-rear"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-camera-roll": LocalJSX.IntrinsicElements["rux-icon-camera-roll"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cancel": LocalJSX.IntrinsicElements["rux-icon-cancel"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cancel-presentation": LocalJSX.IntrinsicElements["rux-icon-cancel-presentation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-card-giftcard": LocalJSX.IntrinsicElements["rux-icon-card-giftcard"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-card-membership": LocalJSX.IntrinsicElements["rux-icon-card-membership"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-card-travel": LocalJSX.IntrinsicElements["rux-icon-card-travel"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-casino": LocalJSX.IntrinsicElements["rux-icon-casino"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cast": LocalJSX.IntrinsicElements["rux-icon-cast"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cast-connected": LocalJSX.IntrinsicElements["rux-icon-cast-connected"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cast-for-education": LocalJSX.IntrinsicElements["rux-icon-cast-for-education"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-category": LocalJSX.IntrinsicElements["rux-icon-category"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cell-wifi": LocalJSX.IntrinsicElements["rux-icon-cell-wifi"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-center-focus-strong": LocalJSX.IntrinsicElements["rux-icon-center-focus-strong"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-center-focus-weak": LocalJSX.IntrinsicElements["rux-icon-center-focus-weak"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-change-history": LocalJSX.IntrinsicElements["rux-icon-change-history"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-chat": LocalJSX.IntrinsicElements["rux-icon-chat"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-chat-bubble": LocalJSX.IntrinsicElements["rux-icon-chat-bubble"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-chat-bubble-outline": LocalJSX.IntrinsicElements["rux-icon-chat-bubble-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-check": LocalJSX.IntrinsicElements["rux-icon-check"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-check-box": LocalJSX.IntrinsicElements["rux-icon-check-box"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-check-box-outline-blank": LocalJSX.IntrinsicElements["rux-icon-check-box-outline-blank"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-check-circle": LocalJSX.IntrinsicElements["rux-icon-check-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-check-circle-outline": LocalJSX.IntrinsicElements["rux-icon-check-circle-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-chevron-left": LocalJSX.IntrinsicElements["rux-icon-chevron-left"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-chevron-right": LocalJSX.IntrinsicElements["rux-icon-chevron-right"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-child-care": LocalJSX.IntrinsicElements["rux-icon-child-care"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-child-friendly": LocalJSX.IntrinsicElements["rux-icon-child-friendly"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-chrome-reader-mode": LocalJSX.IntrinsicElements["rux-icon-chrome-reader-mode"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-class": LocalJSX.IntrinsicElements["rux-icon-class"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-clear": LocalJSX.IntrinsicElements["rux-icon-clear"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-clear-all": LocalJSX.IntrinsicElements["rux-icon-clear-all"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-close": LocalJSX.IntrinsicElements["rux-icon-close"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-closed-caption": LocalJSX.IntrinsicElements["rux-icon-closed-caption"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cloud": LocalJSX.IntrinsicElements["rux-icon-cloud"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cloud-circle": LocalJSX.IntrinsicElements["rux-icon-cloud-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cloud-done": LocalJSX.IntrinsicElements["rux-icon-cloud-done"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cloud-download": LocalJSX.IntrinsicElements["rux-icon-cloud-download"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cloud-off": LocalJSX.IntrinsicElements["rux-icon-cloud-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cloud-queue": LocalJSX.IntrinsicElements["rux-icon-cloud-queue"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-cloud-upload": LocalJSX.IntrinsicElements["rux-icon-cloud-upload"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-code": LocalJSX.IntrinsicElements["rux-icon-code"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-collections": LocalJSX.IntrinsicElements["rux-icon-collections"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-collections-bookmark": LocalJSX.IntrinsicElements["rux-icon-collections-bookmark"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-color-lens": LocalJSX.IntrinsicElements["rux-icon-color-lens"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-colorize": LocalJSX.IntrinsicElements["rux-icon-colorize"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-comment": LocalJSX.IntrinsicElements["rux-icon-comment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-commute": LocalJSX.IntrinsicElements["rux-icon-commute"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-compare": LocalJSX.IntrinsicElements["rux-icon-compare"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-compare-arrows": LocalJSX.IntrinsicElements["rux-icon-compare-arrows"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-compass-calibration": LocalJSX.IntrinsicElements["rux-icon-compass-calibration"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-computer": LocalJSX.IntrinsicElements["rux-icon-computer"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-confirmation-number": LocalJSX.IntrinsicElements["rux-icon-confirmation-number"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-contact-mail": LocalJSX.IntrinsicElements["rux-icon-contact-mail"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-contact-phone": LocalJSX.IntrinsicElements["rux-icon-contact-phone"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-contact-support": LocalJSX.IntrinsicElements["rux-icon-contact-support"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-contacts": LocalJSX.IntrinsicElements["rux-icon-contacts"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-control-camera": LocalJSX.IntrinsicElements["rux-icon-control-camera"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-control-point": LocalJSX.IntrinsicElements["rux-icon-control-point"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-control-point-duplicate": LocalJSX.IntrinsicElements["rux-icon-control-point-duplicate"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-copyright": LocalJSX.IntrinsicElements["rux-icon-copyright"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-create": LocalJSX.IntrinsicElements["rux-icon-create"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-create-new-folder": LocalJSX.IntrinsicElements["rux-icon-create-new-folder"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-credit-card": LocalJSX.IntrinsicElements["rux-icon-credit-card"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop": LocalJSX.IntrinsicElements["rux-icon-crop"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-16-9": LocalJSX.IntrinsicElements["rux-icon-crop-16-9"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-3-2": LocalJSX.IntrinsicElements["rux-icon-crop-3-2"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-5-4": LocalJSX.IntrinsicElements["rux-icon-crop-5-4"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-7-5": LocalJSX.IntrinsicElements["rux-icon-crop-7-5"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-din": LocalJSX.IntrinsicElements["rux-icon-crop-din"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-free": LocalJSX.IntrinsicElements["rux-icon-crop-free"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-landscape": LocalJSX.IntrinsicElements["rux-icon-crop-landscape"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-original": LocalJSX.IntrinsicElements["rux-icon-crop-original"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-portrait": LocalJSX.IntrinsicElements["rux-icon-crop-portrait"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-rotate": LocalJSX.IntrinsicElements["rux-icon-crop-rotate"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-crop-square": LocalJSX.IntrinsicElements["rux-icon-crop-square"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-dashboard": LocalJSX.IntrinsicElements["rux-icon-dashboard"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-data-usage": LocalJSX.IntrinsicElements["rux-icon-data-usage"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-date-range": LocalJSX.IntrinsicElements["rux-icon-date-range"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-dehaze": LocalJSX.IntrinsicElements["rux-icon-dehaze"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-delete": LocalJSX.IntrinsicElements["rux-icon-delete"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-delete-forever": LocalJSX.IntrinsicElements["rux-icon-delete-forever"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-delete-outline": LocalJSX.IntrinsicElements["rux-icon-delete-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-delete-sweep": LocalJSX.IntrinsicElements["rux-icon-delete-sweep"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-departure-board": LocalJSX.IntrinsicElements["rux-icon-departure-board"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-description": LocalJSX.IntrinsicElements["rux-icon-description"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-desktop-access-disabled": LocalJSX.IntrinsicElements["rux-icon-desktop-access-disabled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-desktop-mac": LocalJSX.IntrinsicElements["rux-icon-desktop-mac"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-desktop-windows": LocalJSX.IntrinsicElements["rux-icon-desktop-windows"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-details": LocalJSX.IntrinsicElements["rux-icon-details"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-developer-board": LocalJSX.IntrinsicElements["rux-icon-developer-board"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-developer-mode": LocalJSX.IntrinsicElements["rux-icon-developer-mode"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-device-hub": LocalJSX.IntrinsicElements["rux-icon-device-hub"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-device-unknown": LocalJSX.IntrinsicElements["rux-icon-device-unknown"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-devices": LocalJSX.IntrinsicElements["rux-icon-devices"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-devices-other": LocalJSX.IntrinsicElements["rux-icon-devices-other"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-dialer-sip": LocalJSX.IntrinsicElements["rux-icon-dialer-sip"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-dialpad": LocalJSX.IntrinsicElements["rux-icon-dialpad"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions": LocalJSX.IntrinsicElements["rux-icon-directions"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-bike": LocalJSX.IntrinsicElements["rux-icon-directions-bike"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-boat": LocalJSX.IntrinsicElements["rux-icon-directions-boat"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-bus": LocalJSX.IntrinsicElements["rux-icon-directions-bus"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-car": LocalJSX.IntrinsicElements["rux-icon-directions-car"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-railway": LocalJSX.IntrinsicElements["rux-icon-directions-railway"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-run": LocalJSX.IntrinsicElements["rux-icon-directions-run"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-subway": LocalJSX.IntrinsicElements["rux-icon-directions-subway"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-transit": LocalJSX.IntrinsicElements["rux-icon-directions-transit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-directions-walk": LocalJSX.IntrinsicElements["rux-icon-directions-walk"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-disc-full": LocalJSX.IntrinsicElements["rux-icon-disc-full"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-dns": LocalJSX.IntrinsicElements["rux-icon-dns"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-dock": LocalJSX.IntrinsicElements["rux-icon-dock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-domain": LocalJSX.IntrinsicElements["rux-icon-domain"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-domain-disabled": LocalJSX.IntrinsicElements["rux-icon-domain-disabled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-done": LocalJSX.IntrinsicElements["rux-icon-done"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-done-all": LocalJSX.IntrinsicElements["rux-icon-done-all"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-done-outline": LocalJSX.IntrinsicElements["rux-icon-done-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-donut-large": LocalJSX.IntrinsicElements["rux-icon-donut-large"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-donut-small": LocalJSX.IntrinsicElements["rux-icon-donut-small"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-drafts": LocalJSX.IntrinsicElements["rux-icon-drafts"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-drag-handle": LocalJSX.IntrinsicElements["rux-icon-drag-handle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-drag-indicator": LocalJSX.IntrinsicElements["rux-icon-drag-indicator"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-drive-eta": LocalJSX.IntrinsicElements["rux-icon-drive-eta"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-duo": LocalJSX.IntrinsicElements["rux-icon-duo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-dvr": LocalJSX.IntrinsicElements["rux-icon-dvr"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-edit": LocalJSX.IntrinsicElements["rux-icon-edit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-edit-attributes": LocalJSX.IntrinsicElements["rux-icon-edit-attributes"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-edit-location": LocalJSX.IntrinsicElements["rux-icon-edit-location"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-eject": LocalJSX.IntrinsicElements["rux-icon-eject"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-email": LocalJSX.IntrinsicElements["rux-icon-email"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-enhanced-encryption": LocalJSX.IntrinsicElements["rux-icon-enhanced-encryption"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-equalizer": LocalJSX.IntrinsicElements["rux-icon-equalizer"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-equipment": LocalJSX.IntrinsicElements["rux-icon-equipment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-error": LocalJSX.IntrinsicElements["rux-icon-error"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-error-outline": LocalJSX.IntrinsicElements["rux-icon-error-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-euro-symbol": LocalJSX.IntrinsicElements["rux-icon-euro-symbol"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-ev-station": LocalJSX.IntrinsicElements["rux-icon-ev-station"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-event": LocalJSX.IntrinsicElements["rux-icon-event"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-event-available": LocalJSX.IntrinsicElements["rux-icon-event-available"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-event-busy": LocalJSX.IntrinsicElements["rux-icon-event-busy"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-event-note": LocalJSX.IntrinsicElements["rux-icon-event-note"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-exit-to-app": LocalJSX.IntrinsicElements["rux-icon-exit-to-app"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-expand-less": LocalJSX.IntrinsicElements["rux-icon-expand-less"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-expand-more": LocalJSX.IntrinsicElements["rux-icon-expand-more"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-explicit": LocalJSX.IntrinsicElements["rux-icon-explicit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-explore": LocalJSX.IntrinsicElements["rux-icon-explore"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-explore-off": LocalJSX.IntrinsicElements["rux-icon-explore-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-exposure": LocalJSX.IntrinsicElements["rux-icon-exposure"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-exposure-neg-1": LocalJSX.IntrinsicElements["rux-icon-exposure-neg-1"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-exposure-neg-2": LocalJSX.IntrinsicElements["rux-icon-exposure-neg-2"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-exposure-plus-1": LocalJSX.IntrinsicElements["rux-icon-exposure-plus-1"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-exposure-plus-2": LocalJSX.IntrinsicElements["rux-icon-exposure-plus-2"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-exposure-zero": LocalJSX.IntrinsicElements["rux-icon-exposure-zero"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-extension": LocalJSX.IntrinsicElements["rux-icon-extension"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-face": LocalJSX.IntrinsicElements["rux-icon-face"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fast-forward": LocalJSX.IntrinsicElements["rux-icon-fast-forward"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fast-rewind": LocalJSX.IntrinsicElements["rux-icon-fast-rewind"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fastfood": LocalJSX.IntrinsicElements["rux-icon-fastfood"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-favorite": LocalJSX.IntrinsicElements["rux-icon-favorite"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-favorite-border": LocalJSX.IntrinsicElements["rux-icon-favorite-border"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-featured-play-list": LocalJSX.IntrinsicElements["rux-icon-featured-play-list"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-featured-video": LocalJSX.IntrinsicElements["rux-icon-featured-video"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-feedback": LocalJSX.IntrinsicElements["rux-icon-feedback"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fiber-dvr": LocalJSX.IntrinsicElements["rux-icon-fiber-dvr"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fiber-manual-record": LocalJSX.IntrinsicElements["rux-icon-fiber-manual-record"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fiber-new": LocalJSX.IntrinsicElements["rux-icon-fiber-new"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fiber-pin": LocalJSX.IntrinsicElements["rux-icon-fiber-pin"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fiber-smart-record": LocalJSX.IntrinsicElements["rux-icon-fiber-smart-record"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-file-copy": LocalJSX.IntrinsicElements["rux-icon-file-copy"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter": LocalJSX.IntrinsicElements["rux-icon-filter"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-1": LocalJSX.IntrinsicElements["rux-icon-filter-1"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-2": LocalJSX.IntrinsicElements["rux-icon-filter-2"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-3": LocalJSX.IntrinsicElements["rux-icon-filter-3"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-4": LocalJSX.IntrinsicElements["rux-icon-filter-4"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-5": LocalJSX.IntrinsicElements["rux-icon-filter-5"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-6": LocalJSX.IntrinsicElements["rux-icon-filter-6"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-7": LocalJSX.IntrinsicElements["rux-icon-filter-7"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-8": LocalJSX.IntrinsicElements["rux-icon-filter-8"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-9": LocalJSX.IntrinsicElements["rux-icon-filter-9"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-9-plus": LocalJSX.IntrinsicElements["rux-icon-filter-9-plus"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-b-and-w": LocalJSX.IntrinsicElements["rux-icon-filter-b-and-w"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-center-focus": LocalJSX.IntrinsicElements["rux-icon-filter-center-focus"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-drama": LocalJSX.IntrinsicElements["rux-icon-filter-drama"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-frames": LocalJSX.IntrinsicElements["rux-icon-filter-frames"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-hdr": LocalJSX.IntrinsicElements["rux-icon-filter-hdr"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-list": LocalJSX.IntrinsicElements["rux-icon-filter-list"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-none": LocalJSX.IntrinsicElements["rux-icon-filter-none"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-tilt-shift": LocalJSX.IntrinsicElements["rux-icon-filter-tilt-shift"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-filter-vintage": LocalJSX.IntrinsicElements["rux-icon-filter-vintage"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-find-in-page": LocalJSX.IntrinsicElements["rux-icon-find-in-page"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-find-replace": LocalJSX.IntrinsicElements["rux-icon-find-replace"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fingerprint": LocalJSX.IntrinsicElements["rux-icon-fingerprint"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-first-page": LocalJSX.IntrinsicElements["rux-icon-first-page"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fitness-center": LocalJSX.IntrinsicElements["rux-icon-fitness-center"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flag": LocalJSX.IntrinsicElements["rux-icon-flag"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flare": LocalJSX.IntrinsicElements["rux-icon-flare"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flash-auto": LocalJSX.IntrinsicElements["rux-icon-flash-auto"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flash-off": LocalJSX.IntrinsicElements["rux-icon-flash-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flash-on": LocalJSX.IntrinsicElements["rux-icon-flash-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flight": LocalJSX.IntrinsicElements["rux-icon-flight"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flight-land": LocalJSX.IntrinsicElements["rux-icon-flight-land"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flight-takeoff": LocalJSX.IntrinsicElements["rux-icon-flight-takeoff"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flip": LocalJSX.IntrinsicElements["rux-icon-flip"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flip-to-back": LocalJSX.IntrinsicElements["rux-icon-flip-to-back"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-flip-to-front": LocalJSX.IntrinsicElements["rux-icon-flip-to-front"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-folder": LocalJSX.IntrinsicElements["rux-icon-folder"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-folder-open": LocalJSX.IntrinsicElements["rux-icon-folder-open"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-folder-shared": LocalJSX.IntrinsicElements["rux-icon-folder-shared"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-folder-special": LocalJSX.IntrinsicElements["rux-icon-folder-special"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-font-download": LocalJSX.IntrinsicElements["rux-icon-font-download"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-align-center": LocalJSX.IntrinsicElements["rux-icon-format-align-center"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-align-justify": LocalJSX.IntrinsicElements["rux-icon-format-align-justify"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-align-left": LocalJSX.IntrinsicElements["rux-icon-format-align-left"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-align-right": LocalJSX.IntrinsicElements["rux-icon-format-align-right"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-bold": LocalJSX.IntrinsicElements["rux-icon-format-bold"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-clear": LocalJSX.IntrinsicElements["rux-icon-format-clear"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-color-fill": LocalJSX.IntrinsicElements["rux-icon-format-color-fill"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-color-reset": LocalJSX.IntrinsicElements["rux-icon-format-color-reset"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-color-text": LocalJSX.IntrinsicElements["rux-icon-format-color-text"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-indent-decrease": LocalJSX.IntrinsicElements["rux-icon-format-indent-decrease"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-indent-increase": LocalJSX.IntrinsicElements["rux-icon-format-indent-increase"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-italic": LocalJSX.IntrinsicElements["rux-icon-format-italic"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-line-spacing": LocalJSX.IntrinsicElements["rux-icon-format-line-spacing"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-list-bulleted": LocalJSX.IntrinsicElements["rux-icon-format-list-bulleted"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-list-numbered": LocalJSX.IntrinsicElements["rux-icon-format-list-numbered"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-list-numbered-rtl": LocalJSX.IntrinsicElements["rux-icon-format-list-numbered-rtl"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-paint": LocalJSX.IntrinsicElements["rux-icon-format-paint"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-quote": LocalJSX.IntrinsicElements["rux-icon-format-quote"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-shapes": LocalJSX.IntrinsicElements["rux-icon-format-shapes"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-size": LocalJSX.IntrinsicElements["rux-icon-format-size"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-strikethrough": LocalJSX.IntrinsicElements["rux-icon-format-strikethrough"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-textdirection-l-to-r": LocalJSX.IntrinsicElements["rux-icon-format-textdirection-l-to-r"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-textdirection-r-to-l": LocalJSX.IntrinsicElements["rux-icon-format-textdirection-r-to-l"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-format-underlined": LocalJSX.IntrinsicElements["rux-icon-format-underlined"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-forum": LocalJSX.IntrinsicElements["rux-icon-forum"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-forward": LocalJSX.IntrinsicElements["rux-icon-forward"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-forward-10": LocalJSX.IntrinsicElements["rux-icon-forward-10"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-forward-30": LocalJSX.IntrinsicElements["rux-icon-forward-30"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-forward-5": LocalJSX.IntrinsicElements["rux-icon-forward-5"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-free-breakfast": LocalJSX.IntrinsicElements["rux-icon-free-breakfast"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fullscreen": LocalJSX.IntrinsicElements["rux-icon-fullscreen"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-fullscreen-exit": LocalJSX.IntrinsicElements["rux-icon-fullscreen-exit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-functions": LocalJSX.IntrinsicElements["rux-icon-functions"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-g-translate": LocalJSX.IntrinsicElements["rux-icon-g-translate"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gamepad": LocalJSX.IntrinsicElements["rux-icon-gamepad"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-games": LocalJSX.IntrinsicElements["rux-icon-games"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gavel": LocalJSX.IntrinsicElements["rux-icon-gavel"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gesture": LocalJSX.IntrinsicElements["rux-icon-gesture"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-get-app": LocalJSX.IntrinsicElements["rux-icon-get-app"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gif": LocalJSX.IntrinsicElements["rux-icon-gif"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-golf-course": LocalJSX.IntrinsicElements["rux-icon-golf-course"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gps-fixed": LocalJSX.IntrinsicElements["rux-icon-gps-fixed"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gps-not-fixed": LocalJSX.IntrinsicElements["rux-icon-gps-not-fixed"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gps-off": LocalJSX.IntrinsicElements["rux-icon-gps-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-grade": LocalJSX.IntrinsicElements["rux-icon-grade"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-gradient": LocalJSX.IntrinsicElements["rux-icon-gradient"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-grain": LocalJSX.IntrinsicElements["rux-icon-grain"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-graphic-eq": LocalJSX.IntrinsicElements["rux-icon-graphic-eq"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-grid-off": LocalJSX.IntrinsicElements["rux-icon-grid-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-grid-on": LocalJSX.IntrinsicElements["rux-icon-grid-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-group": LocalJSX.IntrinsicElements["rux-icon-group"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-group-add": LocalJSX.IntrinsicElements["rux-icon-group-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-group-work": LocalJSX.IntrinsicElements["rux-icon-group-work"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hardware": LocalJSX.IntrinsicElements["rux-icon-hardware"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hd": LocalJSX.IntrinsicElements["rux-icon-hd"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hdr-off": LocalJSX.IntrinsicElements["rux-icon-hdr-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hdr-on": LocalJSX.IntrinsicElements["rux-icon-hdr-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hdr-strong": LocalJSX.IntrinsicElements["rux-icon-hdr-strong"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hdr-weak": LocalJSX.IntrinsicElements["rux-icon-hdr-weak"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-headset": LocalJSX.IntrinsicElements["rux-icon-headset"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-headset-mic": LocalJSX.IntrinsicElements["rux-icon-headset-mic"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-healing": LocalJSX.IntrinsicElements["rux-icon-healing"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hearing": LocalJSX.IntrinsicElements["rux-icon-hearing"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-help": LocalJSX.IntrinsicElements["rux-icon-help"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-help-outline": LocalJSX.IntrinsicElements["rux-icon-help-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-high-quality": LocalJSX.IntrinsicElements["rux-icon-high-quality"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-highlight": LocalJSX.IntrinsicElements["rux-icon-highlight"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-highlight-off": LocalJSX.IntrinsicElements["rux-icon-highlight-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-history": LocalJSX.IntrinsicElements["rux-icon-history"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-home": LocalJSX.IntrinsicElements["rux-icon-home"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-horizontal-split": LocalJSX.IntrinsicElements["rux-icon-horizontal-split"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hot-tub": LocalJSX.IntrinsicElements["rux-icon-hot-tub"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hotel": LocalJSX.IntrinsicElements["rux-icon-hotel"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hourglass-empty": LocalJSX.IntrinsicElements["rux-icon-hourglass-empty"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-hourglass-full": LocalJSX.IntrinsicElements["rux-icon-hourglass-full"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-how-to-reg": LocalJSX.IntrinsicElements["rux-icon-how-to-reg"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-how-to-vote": LocalJSX.IntrinsicElements["rux-icon-how-to-vote"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-http": LocalJSX.IntrinsicElements["rux-icon-http"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-https": LocalJSX.IntrinsicElements["rux-icon-https"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-image": LocalJSX.IntrinsicElements["rux-icon-image"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-image-aspect-ratio": LocalJSX.IntrinsicElements["rux-icon-image-aspect-ratio"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-image-search": LocalJSX.IntrinsicElements["rux-icon-image-search"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-import-contacts": LocalJSX.IntrinsicElements["rux-icon-import-contacts"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-import-export": LocalJSX.IntrinsicElements["rux-icon-import-export"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-important-devices": LocalJSX.IntrinsicElements["rux-icon-important-devices"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-inbox": LocalJSX.IntrinsicElements["rux-icon-inbox"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-indeterminate-check-box": LocalJSX.IntrinsicElements["rux-icon-indeterminate-check-box"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-info": LocalJSX.IntrinsicElements["rux-icon-info"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-input": LocalJSX.IntrinsicElements["rux-icon-input"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-chart": LocalJSX.IntrinsicElements["rux-icon-insert-chart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-chart-outlined": LocalJSX.IntrinsicElements["rux-icon-insert-chart-outlined"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-comment": LocalJSX.IntrinsicElements["rux-icon-insert-comment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-drive-file": LocalJSX.IntrinsicElements["rux-icon-insert-drive-file"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-emoticon": LocalJSX.IntrinsicElements["rux-icon-insert-emoticon"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-invitation": LocalJSX.IntrinsicElements["rux-icon-insert-invitation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-link": LocalJSX.IntrinsicElements["rux-icon-insert-link"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-insert-photo": LocalJSX.IntrinsicElements["rux-icon-insert-photo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-invert-colors": LocalJSX.IntrinsicElements["rux-icon-invert-colors"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-invert-colors-off": LocalJSX.IntrinsicElements["rux-icon-invert-colors-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-iso": LocalJSX.IntrinsicElements["rux-icon-iso"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard": LocalJSX.IntrinsicElements["rux-icon-keyboard"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-arrow-down": LocalJSX.IntrinsicElements["rux-icon-keyboard-arrow-down"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-arrow-left": LocalJSX.IntrinsicElements["rux-icon-keyboard-arrow-left"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-arrow-right": LocalJSX.IntrinsicElements["rux-icon-keyboard-arrow-right"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-arrow-up": LocalJSX.IntrinsicElements["rux-icon-keyboard-arrow-up"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-backspace": LocalJSX.IntrinsicElements["rux-icon-keyboard-backspace"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-capslock": LocalJSX.IntrinsicElements["rux-icon-keyboard-capslock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-hide": LocalJSX.IntrinsicElements["rux-icon-keyboard-hide"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-return": LocalJSX.IntrinsicElements["rux-icon-keyboard-return"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-tab": LocalJSX.IntrinsicElements["rux-icon-keyboard-tab"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-keyboard-voice": LocalJSX.IntrinsicElements["rux-icon-keyboard-voice"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-kitchen": LocalJSX.IntrinsicElements["rux-icon-kitchen"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-label": LocalJSX.IntrinsicElements["rux-icon-label"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-label-important": LocalJSX.IntrinsicElements["rux-icon-label-important"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-label-off": LocalJSX.IntrinsicElements["rux-icon-label-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-landscape": LocalJSX.IntrinsicElements["rux-icon-landscape"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-language": LocalJSX.IntrinsicElements["rux-icon-language"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-laptop": LocalJSX.IntrinsicElements["rux-icon-laptop"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-laptop-chromebook": LocalJSX.IntrinsicElements["rux-icon-laptop-chromebook"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-laptop-mac": LocalJSX.IntrinsicElements["rux-icon-laptop-mac"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-laptop-windows": LocalJSX.IntrinsicElements["rux-icon-laptop-windows"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-last-page": LocalJSX.IntrinsicElements["rux-icon-last-page"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-launch": LocalJSX.IntrinsicElements["rux-icon-launch"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-layers": LocalJSX.IntrinsicElements["rux-icon-layers"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-layers-clear": LocalJSX.IntrinsicElements["rux-icon-layers-clear"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-leak-add": LocalJSX.IntrinsicElements["rux-icon-leak-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-leak-remove": LocalJSX.IntrinsicElements["rux-icon-leak-remove"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-lens": LocalJSX.IntrinsicElements["rux-icon-lens"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-library-add": LocalJSX.IntrinsicElements["rux-icon-library-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-library-books": LocalJSX.IntrinsicElements["rux-icon-library-books"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-library-music": LocalJSX.IntrinsicElements["rux-icon-library-music"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-line-style": LocalJSX.IntrinsicElements["rux-icon-line-style"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-line-weight": LocalJSX.IntrinsicElements["rux-icon-line-weight"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-linear-scale": LocalJSX.IntrinsicElements["rux-icon-linear-scale"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-link": LocalJSX.IntrinsicElements["rux-icon-link"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-link-off": LocalJSX.IntrinsicElements["rux-icon-link-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-linked-camera": LocalJSX.IntrinsicElements["rux-icon-linked-camera"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-list": LocalJSX.IntrinsicElements["rux-icon-list"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-list-alt": LocalJSX.IntrinsicElements["rux-icon-list-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-live-help": LocalJSX.IntrinsicElements["rux-icon-live-help"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-live-tv": LocalJSX.IntrinsicElements["rux-icon-live-tv"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-activity": LocalJSX.IntrinsicElements["rux-icon-local-activity"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-airport": LocalJSX.IntrinsicElements["rux-icon-local-airport"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-atm": LocalJSX.IntrinsicElements["rux-icon-local-atm"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-bar": LocalJSX.IntrinsicElements["rux-icon-local-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-cafe": LocalJSX.IntrinsicElements["rux-icon-local-cafe"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-car-wash": LocalJSX.IntrinsicElements["rux-icon-local-car-wash"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-convenience-store": LocalJSX.IntrinsicElements["rux-icon-local-convenience-store"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-dining": LocalJSX.IntrinsicElements["rux-icon-local-dining"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-drink": LocalJSX.IntrinsicElements["rux-icon-local-drink"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-gas-station": LocalJSX.IntrinsicElements["rux-icon-local-gas-station"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-grocery-store": LocalJSX.IntrinsicElements["rux-icon-local-grocery-store"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-hospital": LocalJSX.IntrinsicElements["rux-icon-local-hospital"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-hotel": LocalJSX.IntrinsicElements["rux-icon-local-hotel"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-laundry-service": LocalJSX.IntrinsicElements["rux-icon-local-laundry-service"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-library": LocalJSX.IntrinsicElements["rux-icon-local-library"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-mall": LocalJSX.IntrinsicElements["rux-icon-local-mall"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-movies": LocalJSX.IntrinsicElements["rux-icon-local-movies"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-offer": LocalJSX.IntrinsicElements["rux-icon-local-offer"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-parking": LocalJSX.IntrinsicElements["rux-icon-local-parking"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-pharmacy": LocalJSX.IntrinsicElements["rux-icon-local-pharmacy"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-phone": LocalJSX.IntrinsicElements["rux-icon-local-phone"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-play": LocalJSX.IntrinsicElements["rux-icon-local-play"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-post-office": LocalJSX.IntrinsicElements["rux-icon-local-post-office"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-printshop": LocalJSX.IntrinsicElements["rux-icon-local-printshop"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-see": LocalJSX.IntrinsicElements["rux-icon-local-see"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-shipping": LocalJSX.IntrinsicElements["rux-icon-local-shipping"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-local-taxi": LocalJSX.IntrinsicElements["rux-icon-local-taxi"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-location-city": LocalJSX.IntrinsicElements["rux-icon-location-city"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-location-disabled": LocalJSX.IntrinsicElements["rux-icon-location-disabled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-location-off": LocalJSX.IntrinsicElements["rux-icon-location-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-location-on": LocalJSX.IntrinsicElements["rux-icon-location-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-location-searching": LocalJSX.IntrinsicElements["rux-icon-location-searching"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-lock": LocalJSX.IntrinsicElements["rux-icon-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-lock-open": LocalJSX.IntrinsicElements["rux-icon-lock-open"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-looks": LocalJSX.IntrinsicElements["rux-icon-looks"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-looks-1": LocalJSX.IntrinsicElements["rux-icon-looks-1"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-looks-2": LocalJSX.IntrinsicElements["rux-icon-looks-2"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-looks-3": LocalJSX.IntrinsicElements["rux-icon-looks-3"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-looks-4": LocalJSX.IntrinsicElements["rux-icon-looks-4"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-looks-5": LocalJSX.IntrinsicElements["rux-icon-looks-5"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-looks-6": LocalJSX.IntrinsicElements["rux-icon-looks-6"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-loop": LocalJSX.IntrinsicElements["rux-icon-loop"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-loupe": LocalJSX.IntrinsicElements["rux-icon-loupe"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-low-priority": LocalJSX.IntrinsicElements["rux-icon-low-priority"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-loyalty": LocalJSX.IntrinsicElements["rux-icon-loyalty"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mail": LocalJSX.IntrinsicElements["rux-icon-mail"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mail-outline": LocalJSX.IntrinsicElements["rux-icon-mail-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-map": LocalJSX.IntrinsicElements["rux-icon-map"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-markunread": LocalJSX.IntrinsicElements["rux-icon-markunread"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-markunread-mailbox": LocalJSX.IntrinsicElements["rux-icon-markunread-mailbox"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-maximize": LocalJSX.IntrinsicElements["rux-icon-maximize"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-meeting-room": LocalJSX.IntrinsicElements["rux-icon-meeting-room"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-memory": LocalJSX.IntrinsicElements["rux-icon-memory"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-menu": LocalJSX.IntrinsicElements["rux-icon-menu"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-merge-type": LocalJSX.IntrinsicElements["rux-icon-merge-type"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-message": LocalJSX.IntrinsicElements["rux-icon-message"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mic": LocalJSX.IntrinsicElements["rux-icon-mic"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mic-none": LocalJSX.IntrinsicElements["rux-icon-mic-none"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mic-off": LocalJSX.IntrinsicElements["rux-icon-mic-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-minimize": LocalJSX.IntrinsicElements["rux-icon-minimize"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-missed-video-call": LocalJSX.IntrinsicElements["rux-icon-missed-video-call"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mission": LocalJSX.IntrinsicElements["rux-icon-mission"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mms": LocalJSX.IntrinsicElements["rux-icon-mms"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mobile-friendly": LocalJSX.IntrinsicElements["rux-icon-mobile-friendly"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mobile-off": LocalJSX.IntrinsicElements["rux-icon-mobile-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mobile-screen-share": LocalJSX.IntrinsicElements["rux-icon-mobile-screen-share"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mode-comment": LocalJSX.IntrinsicElements["rux-icon-mode-comment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-monetization-on": LocalJSX.IntrinsicElements["rux-icon-monetization-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-money": LocalJSX.IntrinsicElements["rux-icon-money"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-money-off": LocalJSX.IntrinsicElements["rux-icon-money-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-monochrome-photos": LocalJSX.IntrinsicElements["rux-icon-monochrome-photos"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mood": LocalJSX.IntrinsicElements["rux-icon-mood"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mood-bad": LocalJSX.IntrinsicElements["rux-icon-mood-bad"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-more": LocalJSX.IntrinsicElements["rux-icon-more"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-more-horiz": LocalJSX.IntrinsicElements["rux-icon-more-horiz"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-more-vert": LocalJSX.IntrinsicElements["rux-icon-more-vert"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-motorcycle": LocalJSX.IntrinsicElements["rux-icon-motorcycle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-mouse": LocalJSX.IntrinsicElements["rux-icon-mouse"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-move-to-inbox": LocalJSX.IntrinsicElements["rux-icon-move-to-inbox"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-movie": LocalJSX.IntrinsicElements["rux-icon-movie"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-movie-creation": LocalJSX.IntrinsicElements["rux-icon-movie-creation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-movie-filter": LocalJSX.IntrinsicElements["rux-icon-movie-filter"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-multiline-chart": LocalJSX.IntrinsicElements["rux-icon-multiline-chart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-music-note": LocalJSX.IntrinsicElements["rux-icon-music-note"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-music-off": LocalJSX.IntrinsicElements["rux-icon-music-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-music-video": LocalJSX.IntrinsicElements["rux-icon-music-video"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-my-location": LocalJSX.IntrinsicElements["rux-icon-my-location"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-nature": LocalJSX.IntrinsicElements["rux-icon-nature"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-nature-people": LocalJSX.IntrinsicElements["rux-icon-nature-people"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-navigate-before": LocalJSX.IntrinsicElements["rux-icon-navigate-before"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-navigate-next": LocalJSX.IntrinsicElements["rux-icon-navigate-next"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-navigation": LocalJSX.IntrinsicElements["rux-icon-navigation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-near-me": LocalJSX.IntrinsicElements["rux-icon-near-me"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-netcom": LocalJSX.IntrinsicElements["rux-icon-netcom"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-network-cell": LocalJSX.IntrinsicElements["rux-icon-network-cell"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-network-check": LocalJSX.IntrinsicElements["rux-icon-network-check"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-network-locked": LocalJSX.IntrinsicElements["rux-icon-network-locked"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-network-wifi": LocalJSX.IntrinsicElements["rux-icon-network-wifi"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-new-releases": LocalJSX.IntrinsicElements["rux-icon-new-releases"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-next-week": LocalJSX.IntrinsicElements["rux-icon-next-week"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-nfc": LocalJSX.IntrinsicElements["rux-icon-nfc"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-no-encryption": LocalJSX.IntrinsicElements["rux-icon-no-encryption"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-no-meeting-room": LocalJSX.IntrinsicElements["rux-icon-no-meeting-room"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-no-sim": LocalJSX.IntrinsicElements["rux-icon-no-sim"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-not-interested": LocalJSX.IntrinsicElements["rux-icon-not-interested"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-not-listed-location": LocalJSX.IntrinsicElements["rux-icon-not-listed-location"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-note": LocalJSX.IntrinsicElements["rux-icon-note"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-note-add": LocalJSX.IntrinsicElements["rux-icon-note-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-notes": LocalJSX.IntrinsicElements["rux-icon-notes"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-notification-important": LocalJSX.IntrinsicElements["rux-icon-notification-important"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-notifications": LocalJSX.IntrinsicElements["rux-icon-notifications"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-notifications-active": LocalJSX.IntrinsicElements["rux-icon-notifications-active"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-notifications-none": LocalJSX.IntrinsicElements["rux-icon-notifications-none"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-notifications-off": LocalJSX.IntrinsicElements["rux-icon-notifications-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-notifications-paused": LocalJSX.IntrinsicElements["rux-icon-notifications-paused"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-offline-bolt": LocalJSX.IntrinsicElements["rux-icon-offline-bolt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-offline-pin": LocalJSX.IntrinsicElements["rux-icon-offline-pin"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-ondemand-video": LocalJSX.IntrinsicElements["rux-icon-ondemand-video"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-opacity": LocalJSX.IntrinsicElements["rux-icon-opacity"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-open-in-browser": LocalJSX.IntrinsicElements["rux-icon-open-in-browser"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-open-in-new": LocalJSX.IntrinsicElements["rux-icon-open-in-new"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-open-with": LocalJSX.IntrinsicElements["rux-icon-open-with"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-outlined-flag": LocalJSX.IntrinsicElements["rux-icon-outlined-flag"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pages": LocalJSX.IntrinsicElements["rux-icon-pages"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pageview": LocalJSX.IntrinsicElements["rux-icon-pageview"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-palette": LocalJSX.IntrinsicElements["rux-icon-palette"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pan-tool": LocalJSX.IntrinsicElements["rux-icon-pan-tool"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-panorama": LocalJSX.IntrinsicElements["rux-icon-panorama"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-panorama-fish-eye": LocalJSX.IntrinsicElements["rux-icon-panorama-fish-eye"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-panorama-horizontal": LocalJSX.IntrinsicElements["rux-icon-panorama-horizontal"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-panorama-vertical": LocalJSX.IntrinsicElements["rux-icon-panorama-vertical"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-panorama-wide-angle": LocalJSX.IntrinsicElements["rux-icon-panorama-wide-angle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-party-mode": LocalJSX.IntrinsicElements["rux-icon-party-mode"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pause": LocalJSX.IntrinsicElements["rux-icon-pause"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pause-circle-filled": LocalJSX.IntrinsicElements["rux-icon-pause-circle-filled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pause-circle-outline": LocalJSX.IntrinsicElements["rux-icon-pause-circle-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pause-presentation": LocalJSX.IntrinsicElements["rux-icon-pause-presentation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-payload": LocalJSX.IntrinsicElements["rux-icon-payload"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-payment": LocalJSX.IntrinsicElements["rux-icon-payment"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-people-outline": LocalJSX.IntrinsicElements["rux-icon-people-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-camera-mic": LocalJSX.IntrinsicElements["rux-icon-perm-camera-mic"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-contact-calendar": LocalJSX.IntrinsicElements["rux-icon-perm-contact-calendar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-data-setting": LocalJSX.IntrinsicElements["rux-icon-perm-data-setting"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-device-information": LocalJSX.IntrinsicElements["rux-icon-perm-device-information"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-identity": LocalJSX.IntrinsicElements["rux-icon-perm-identity"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-media": LocalJSX.IntrinsicElements["rux-icon-perm-media"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-phone-msg": LocalJSX.IntrinsicElements["rux-icon-perm-phone-msg"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-perm-scan-wifi": LocalJSX.IntrinsicElements["rux-icon-perm-scan-wifi"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-person": LocalJSX.IntrinsicElements["rux-icon-person"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-person-add": LocalJSX.IntrinsicElements["rux-icon-person-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-person-add-disabled": LocalJSX.IntrinsicElements["rux-icon-person-add-disabled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-person-outline": LocalJSX.IntrinsicElements["rux-icon-person-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-person-pin": LocalJSX.IntrinsicElements["rux-icon-person-pin"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-person-pin-circle": LocalJSX.IntrinsicElements["rux-icon-person-pin-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-personal-video": LocalJSX.IntrinsicElements["rux-icon-personal-video"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pets": LocalJSX.IntrinsicElements["rux-icon-pets"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone": LocalJSX.IntrinsicElements["rux-icon-phone"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-android": LocalJSX.IntrinsicElements["rux-icon-phone-android"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-bluetooth-speaker": LocalJSX.IntrinsicElements["rux-icon-phone-bluetooth-speaker"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-callback": LocalJSX.IntrinsicElements["rux-icon-phone-callback"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-forwarded": LocalJSX.IntrinsicElements["rux-icon-phone-forwarded"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-in-talk": LocalJSX.IntrinsicElements["rux-icon-phone-in-talk"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-iphone": LocalJSX.IntrinsicElements["rux-icon-phone-iphone"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-locked": LocalJSX.IntrinsicElements["rux-icon-phone-locked"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-missed": LocalJSX.IntrinsicElements["rux-icon-phone-missed"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phone-paused": LocalJSX.IntrinsicElements["rux-icon-phone-paused"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phonelink": LocalJSX.IntrinsicElements["rux-icon-phonelink"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phonelink-erase": LocalJSX.IntrinsicElements["rux-icon-phonelink-erase"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phonelink-lock": LocalJSX.IntrinsicElements["rux-icon-phonelink-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phonelink-off": LocalJSX.IntrinsicElements["rux-icon-phonelink-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phonelink-ring": LocalJSX.IntrinsicElements["rux-icon-phonelink-ring"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-phonelink-setup": LocalJSX.IntrinsicElements["rux-icon-phonelink-setup"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo": LocalJSX.IntrinsicElements["rux-icon-photo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo-album": LocalJSX.IntrinsicElements["rux-icon-photo-album"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo-camera": LocalJSX.IntrinsicElements["rux-icon-photo-camera"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo-filter": LocalJSX.IntrinsicElements["rux-icon-photo-filter"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo-library": LocalJSX.IntrinsicElements["rux-icon-photo-library"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo-size-select-actual": LocalJSX.IntrinsicElements["rux-icon-photo-size-select-actual"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo-size-select-large": LocalJSX.IntrinsicElements["rux-icon-photo-size-select-large"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-photo-size-select-small": LocalJSX.IntrinsicElements["rux-icon-photo-size-select-small"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-picture-as-pdf": LocalJSX.IntrinsicElements["rux-icon-picture-as-pdf"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-picture-in-picture": LocalJSX.IntrinsicElements["rux-icon-picture-in-picture"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-picture-in-picture-alt": LocalJSX.IntrinsicElements["rux-icon-picture-in-picture-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pie-chart": LocalJSX.IntrinsicElements["rux-icon-pie-chart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pin-drop": LocalJSX.IntrinsicElements["rux-icon-pin-drop"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-place": LocalJSX.IntrinsicElements["rux-icon-place"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-play-arrow": LocalJSX.IntrinsicElements["rux-icon-play-arrow"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-play-circle-filled": LocalJSX.IntrinsicElements["rux-icon-play-circle-filled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-play-circle-filled-white": LocalJSX.IntrinsicElements["rux-icon-play-circle-filled-white"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-play-circle-outline": LocalJSX.IntrinsicElements["rux-icon-play-circle-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-play-for-work": LocalJSX.IntrinsicElements["rux-icon-play-for-work"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-playlist-add": LocalJSX.IntrinsicElements["rux-icon-playlist-add"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-playlist-add-check": LocalJSX.IntrinsicElements["rux-icon-playlist-add-check"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-playlist-play": LocalJSX.IntrinsicElements["rux-icon-playlist-play"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-plus-one": LocalJSX.IntrinsicElements["rux-icon-plus-one"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-poll": LocalJSX.IntrinsicElements["rux-icon-poll"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pool": LocalJSX.IntrinsicElements["rux-icon-pool"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-portable-wifi-off": LocalJSX.IntrinsicElements["rux-icon-portable-wifi-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-portrait": LocalJSX.IntrinsicElements["rux-icon-portrait"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-power": LocalJSX.IntrinsicElements["rux-icon-power"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-power-input": LocalJSX.IntrinsicElements["rux-icon-power-input"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-power-off": LocalJSX.IntrinsicElements["rux-icon-power-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-power-settings-new": LocalJSX.IntrinsicElements["rux-icon-power-settings-new"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-pregnant-woman": LocalJSX.IntrinsicElements["rux-icon-pregnant-woman"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-present-to-all": LocalJSX.IntrinsicElements["rux-icon-present-to-all"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-print": LocalJSX.IntrinsicElements["rux-icon-print"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-print-disabled": LocalJSX.IntrinsicElements["rux-icon-print-disabled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-priority-high": LocalJSX.IntrinsicElements["rux-icon-priority-high"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-processor": LocalJSX.IntrinsicElements["rux-icon-processor"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-processor-alt": LocalJSX.IntrinsicElements["rux-icon-processor-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-propulsion-power": LocalJSX.IntrinsicElements["rux-icon-propulsion-power"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-public": LocalJSX.IntrinsicElements["rux-icon-public"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-publish": LocalJSX.IntrinsicElements["rux-icon-publish"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-query-builder": LocalJSX.IntrinsicElements["rux-icon-query-builder"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-question-answer": LocalJSX.IntrinsicElements["rux-icon-question-answer"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-queue": LocalJSX.IntrinsicElements["rux-icon-queue"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-queue-music": LocalJSX.IntrinsicElements["rux-icon-queue-music"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-queue-play-next": LocalJSX.IntrinsicElements["rux-icon-queue-play-next"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-radio": LocalJSX.IntrinsicElements["rux-icon-radio"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-radio-button-checked": LocalJSX.IntrinsicElements["rux-icon-radio-button-checked"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-radio-button-unchecked": LocalJSX.IntrinsicElements["rux-icon-radio-button-unchecked"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rate-review": LocalJSX.IntrinsicElements["rux-icon-rate-review"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-receipt": LocalJSX.IntrinsicElements["rux-icon-receipt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-recent-actors": LocalJSX.IntrinsicElements["rux-icon-recent-actors"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-record-voice-over": LocalJSX.IntrinsicElements["rux-icon-record-voice-over"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-redeem": LocalJSX.IntrinsicElements["rux-icon-redeem"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-redo": LocalJSX.IntrinsicElements["rux-icon-redo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-refresh": LocalJSX.IntrinsicElements["rux-icon-refresh"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-release": LocalJSX.IntrinsicElements["rux-icon-release"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-remove": LocalJSX.IntrinsicElements["rux-icon-remove"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-remove-circle": LocalJSX.IntrinsicElements["rux-icon-remove-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-remove-circle-outline": LocalJSX.IntrinsicElements["rux-icon-remove-circle-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-remove-from-queue": LocalJSX.IntrinsicElements["rux-icon-remove-from-queue"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-remove-red-eye": LocalJSX.IntrinsicElements["rux-icon-remove-red-eye"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-remove-shopping-cart": LocalJSX.IntrinsicElements["rux-icon-remove-shopping-cart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-reorder": LocalJSX.IntrinsicElements["rux-icon-reorder"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-repeat": LocalJSX.IntrinsicElements["rux-icon-repeat"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-repeat-one": LocalJSX.IntrinsicElements["rux-icon-repeat-one"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-replay": LocalJSX.IntrinsicElements["rux-icon-replay"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-replay-10": LocalJSX.IntrinsicElements["rux-icon-replay-10"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-replay-30": LocalJSX.IntrinsicElements["rux-icon-replay-30"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-replay-5": LocalJSX.IntrinsicElements["rux-icon-replay-5"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-reply": LocalJSX.IntrinsicElements["rux-icon-reply"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-reply-all": LocalJSX.IntrinsicElements["rux-icon-reply-all"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-report": LocalJSX.IntrinsicElements["rux-icon-report"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-report-off": LocalJSX.IntrinsicElements["rux-icon-report-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-report-problem": LocalJSX.IntrinsicElements["rux-icon-report-problem"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-restaurant": LocalJSX.IntrinsicElements["rux-icon-restaurant"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-restaurant-menu": LocalJSX.IntrinsicElements["rux-icon-restaurant-menu"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-restore": LocalJSX.IntrinsicElements["rux-icon-restore"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-restore-from-trash": LocalJSX.IntrinsicElements["rux-icon-restore-from-trash"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-restore-page": LocalJSX.IntrinsicElements["rux-icon-restore-page"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-ring-volume": LocalJSX.IntrinsicElements["rux-icon-ring-volume"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-room": LocalJSX.IntrinsicElements["rux-icon-room"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-room-service": LocalJSX.IntrinsicElements["rux-icon-room-service"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rotate-90-degrees-cc": LocalJSX.IntrinsicElements["rux-icon-rotate-90-degrees-cc"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rotate-left": LocalJSX.IntrinsicElements["rux-icon-rotate-left"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rotate-right": LocalJSX.IntrinsicElements["rux-icon-rotate-right"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rounded-corner": LocalJSX.IntrinsicElements["rux-icon-rounded-corner"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-router": LocalJSX.IntrinsicElements["rux-icon-router"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rowing": LocalJSX.IntrinsicElements["rux-icon-rowing"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rss-feed": LocalJSX.IntrinsicElements["rux-icon-rss-feed"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-rv-hookup": LocalJSX.IntrinsicElements["rux-icon-rv-hookup"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-satellite": LocalJSX.IntrinsicElements["rux-icon-satellite"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-satellite-off": LocalJSX.IntrinsicElements["rux-icon-satellite-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-satellite-receive": LocalJSX.IntrinsicElements["rux-icon-satellite-receive"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-satellite-transmit": LocalJSX.IntrinsicElements["rux-icon-satellite-transmit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-save": LocalJSX.IntrinsicElements["rux-icon-save"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-save-alt": LocalJSX.IntrinsicElements["rux-icon-save-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-scanner": LocalJSX.IntrinsicElements["rux-icon-scanner"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-scatter-plot": LocalJSX.IntrinsicElements["rux-icon-scatter-plot"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-schedule": LocalJSX.IntrinsicElements["rux-icon-schedule"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-school": LocalJSX.IntrinsicElements["rux-icon-school"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-score": LocalJSX.IntrinsicElements["rux-icon-score"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-screen-lock-landscape": LocalJSX.IntrinsicElements["rux-icon-screen-lock-landscape"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-screen-lock-portrait": LocalJSX.IntrinsicElements["rux-icon-screen-lock-portrait"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-screen-lock-rotation": LocalJSX.IntrinsicElements["rux-icon-screen-lock-rotation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-screen-rotation": LocalJSX.IntrinsicElements["rux-icon-screen-rotation"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-screen-share": LocalJSX.IntrinsicElements["rux-icon-screen-share"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sd-card": LocalJSX.IntrinsicElements["rux-icon-sd-card"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sd-storage": LocalJSX.IntrinsicElements["rux-icon-sd-storage"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-search": LocalJSX.IntrinsicElements["rux-icon-search"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-seat": LocalJSX.IntrinsicElements["rux-icon-seat"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-security": LocalJSX.IntrinsicElements["rux-icon-security"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-select-all": LocalJSX.IntrinsicElements["rux-icon-select-all"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-send": LocalJSX.IntrinsicElements["rux-icon-send"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sentiment-dissatisfied": LocalJSX.IntrinsicElements["rux-icon-sentiment-dissatisfied"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sentiment-satisfied": LocalJSX.IntrinsicElements["rux-icon-sentiment-satisfied"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sentiment-satisfied-alt": LocalJSX.IntrinsicElements["rux-icon-sentiment-satisfied-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sentiment-very-dissatisfied": LocalJSX.IntrinsicElements["rux-icon-sentiment-very-dissatisfied"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sentiment-very-satisfied": LocalJSX.IntrinsicElements["rux-icon-sentiment-very-satisfied"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-set-power": LocalJSX.IntrinsicElements["rux-icon-set-power"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings": LocalJSX.IntrinsicElements["rux-icon-settings"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-applications": LocalJSX.IntrinsicElements["rux-icon-settings-applications"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-backup-restore": LocalJSX.IntrinsicElements["rux-icon-settings-backup-restore"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-bluetooth": LocalJSX.IntrinsicElements["rux-icon-settings-bluetooth"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-brightness": LocalJSX.IntrinsicElements["rux-icon-settings-brightness"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-cell": LocalJSX.IntrinsicElements["rux-icon-settings-cell"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-ethernet": LocalJSX.IntrinsicElements["rux-icon-settings-ethernet"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-input-antenna": LocalJSX.IntrinsicElements["rux-icon-settings-input-antenna"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-input-component": LocalJSX.IntrinsicElements["rux-icon-settings-input-component"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-input-composite": LocalJSX.IntrinsicElements["rux-icon-settings-input-composite"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-input-hdmi": LocalJSX.IntrinsicElements["rux-icon-settings-input-hdmi"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-input-svideo": LocalJSX.IntrinsicElements["rux-icon-settings-input-svideo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-overscan": LocalJSX.IntrinsicElements["rux-icon-settings-overscan"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-phone": LocalJSX.IntrinsicElements["rux-icon-settings-phone"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-power": LocalJSX.IntrinsicElements["rux-icon-settings-power"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-remote": LocalJSX.IntrinsicElements["rux-icon-settings-remote"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-system-daydream": LocalJSX.IntrinsicElements["rux-icon-settings-system-daydream"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-settings-voice": LocalJSX.IntrinsicElements["rux-icon-settings-voice"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-share": LocalJSX.IntrinsicElements["rux-icon-share"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-shop": LocalJSX.IntrinsicElements["rux-icon-shop"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-shop-two": LocalJSX.IntrinsicElements["rux-icon-shop-two"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-shopping-basket": LocalJSX.IntrinsicElements["rux-icon-shopping-basket"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-shopping-cart": LocalJSX.IntrinsicElements["rux-icon-shopping-cart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-short-text": LocalJSX.IntrinsicElements["rux-icon-short-text"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-show-chart": LocalJSX.IntrinsicElements["rux-icon-show-chart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-shuffle": LocalJSX.IntrinsicElements["rux-icon-shuffle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-shutter-speed": LocalJSX.IntrinsicElements["rux-icon-shutter-speed"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-0-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-0-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-1-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-1-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-2-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-2-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-3-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-3-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-4-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-4-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-alt": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-connected-no-internet-0-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-connected-no-internet-0-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-connected-no-internet-1-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-connected-no-internet-1-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-connected-no-internet-2-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-connected-no-internet-2-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-connected-no-internet-3-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-connected-no-internet-3-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-connected-no-internet-4-bar": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-connected-no-internet-4-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-no-sim": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-no-sim"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-null": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-null"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-cellular-off": LocalJSX.IntrinsicElements["rux-icon-signal-cellular-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-0-bar": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-0-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-1-bar": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-1-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-1-bar-lock": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-1-bar-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-2-bar": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-2-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-2-bar-lock": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-2-bar-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-3-bar": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-3-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-3-bar-lock": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-3-bar-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-4-bar": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-4-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-4-bar-lock": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-4-bar-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-signal-wifi-off": LocalJSX.IntrinsicElements["rux-icon-signal-wifi-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sim-card": LocalJSX.IntrinsicElements["rux-icon-sim-card"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-skip-next": LocalJSX.IntrinsicElements["rux-icon-skip-next"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-skip-previous": LocalJSX.IntrinsicElements["rux-icon-skip-previous"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-slideshow": LocalJSX.IntrinsicElements["rux-icon-slideshow"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-slow-motion-video": LocalJSX.IntrinsicElements["rux-icon-slow-motion-video"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-smartphone": LocalJSX.IntrinsicElements["rux-icon-smartphone"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-smoke-free": LocalJSX.IntrinsicElements["rux-icon-smoke-free"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-smoking-rooms": LocalJSX.IntrinsicElements["rux-icon-smoking-rooms"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sms": LocalJSX.IntrinsicElements["rux-icon-sms"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sms-failed": LocalJSX.IntrinsicElements["rux-icon-sms-failed"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-snooze": LocalJSX.IntrinsicElements["rux-icon-snooze"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-solar": LocalJSX.IntrinsicElements["rux-icon-solar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sort": LocalJSX.IntrinsicElements["rux-icon-sort"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sort-by-alpha": LocalJSX.IntrinsicElements["rux-icon-sort-by-alpha"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-spa": LocalJSX.IntrinsicElements["rux-icon-spa"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-space-bar": LocalJSX.IntrinsicElements["rux-icon-space-bar"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-speaker": LocalJSX.IntrinsicElements["rux-icon-speaker"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-speaker-group": LocalJSX.IntrinsicElements["rux-icon-speaker-group"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-speaker-notes": LocalJSX.IntrinsicElements["rux-icon-speaker-notes"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-speaker-notes-off": LocalJSX.IntrinsicElements["rux-icon-speaker-notes-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-speaker-phone": LocalJSX.IntrinsicElements["rux-icon-speaker-phone"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-spellcheck": LocalJSX.IntrinsicElements["rux-icon-spellcheck"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-star": LocalJSX.IntrinsicElements["rux-icon-star"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-star-border": LocalJSX.IntrinsicElements["rux-icon-star-border"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-star-half": LocalJSX.IntrinsicElements["rux-icon-star-half"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-star-rate": LocalJSX.IntrinsicElements["rux-icon-star-rate"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-stars": LocalJSX.IntrinsicElements["rux-icon-stars"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-stay-current-landscape": LocalJSX.IntrinsicElements["rux-icon-stay-current-landscape"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-stay-current-portrait": LocalJSX.IntrinsicElements["rux-icon-stay-current-portrait"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-stay-primary-landscape": LocalJSX.IntrinsicElements["rux-icon-stay-primary-landscape"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-stay-primary-portrait": LocalJSX.IntrinsicElements["rux-icon-stay-primary-portrait"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-stop": LocalJSX.IntrinsicElements["rux-icon-stop"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-stop-screen-share": LocalJSX.IntrinsicElements["rux-icon-stop-screen-share"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-storage": LocalJSX.IntrinsicElements["rux-icon-storage"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-store": LocalJSX.IntrinsicElements["rux-icon-store"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-store-mall-directory": LocalJSX.IntrinsicElements["rux-icon-store-mall-directory"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-straighten": LocalJSX.IntrinsicElements["rux-icon-straighten"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-streetview": LocalJSX.IntrinsicElements["rux-icon-streetview"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-strikethrough-s": LocalJSX.IntrinsicElements["rux-icon-strikethrough-s"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-style": LocalJSX.IntrinsicElements["rux-icon-style"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-subdirectory-arrow-left": LocalJSX.IntrinsicElements["rux-icon-subdirectory-arrow-left"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-subdirectory-arrow-right": LocalJSX.IntrinsicElements["rux-icon-subdirectory-arrow-right"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-subject": LocalJSX.IntrinsicElements["rux-icon-subject"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-subscriptions": LocalJSX.IntrinsicElements["rux-icon-subscriptions"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-subtitles": LocalJSX.IntrinsicElements["rux-icon-subtitles"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-subway": LocalJSX.IntrinsicElements["rux-icon-subway"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-supervised-user-circle": LocalJSX.IntrinsicElements["rux-icon-supervised-user-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-supervisor-account": LocalJSX.IntrinsicElements["rux-icon-supervisor-account"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-surround-sound": LocalJSX.IntrinsicElements["rux-icon-surround-sound"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-swap-calls": LocalJSX.IntrinsicElements["rux-icon-swap-calls"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-swap-horiz": LocalJSX.IntrinsicElements["rux-icon-swap-horiz"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-swap-horizontal-circle": LocalJSX.IntrinsicElements["rux-icon-swap-horizontal-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-swap-vert": LocalJSX.IntrinsicElements["rux-icon-swap-vert"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-swap-vertical-circle": LocalJSX.IntrinsicElements["rux-icon-swap-vertical-circle"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-switch-camera": LocalJSX.IntrinsicElements["rux-icon-switch-camera"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-switch-video": LocalJSX.IntrinsicElements["rux-icon-switch-video"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sync": LocalJSX.IntrinsicElements["rux-icon-sync"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sync-disabled": LocalJSX.IntrinsicElements["rux-icon-sync-disabled"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-sync-problem": LocalJSX.IntrinsicElements["rux-icon-sync-problem"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-system-update": LocalJSX.IntrinsicElements["rux-icon-system-update"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tab": LocalJSX.IntrinsicElements["rux-icon-tab"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tab-unselected": LocalJSX.IntrinsicElements["rux-icon-tab-unselected"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-table-chart": LocalJSX.IntrinsicElements["rux-icon-table-chart"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tablet": LocalJSX.IntrinsicElements["rux-icon-tablet"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tablet-android": LocalJSX.IntrinsicElements["rux-icon-tablet-android"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tablet-mac": LocalJSX.IntrinsicElements["rux-icon-tablet-mac"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tag-faces": LocalJSX.IntrinsicElements["rux-icon-tag-faces"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tap-and-play": LocalJSX.IntrinsicElements["rux-icon-tap-and-play"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-terrain": LocalJSX.IntrinsicElements["rux-icon-terrain"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-text-fields": LocalJSX.IntrinsicElements["rux-icon-text-fields"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-text-format": LocalJSX.IntrinsicElements["rux-icon-text-format"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-text-rotate-up": LocalJSX.IntrinsicElements["rux-icon-text-rotate-up"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-text-rotate-vertical": LocalJSX.IntrinsicElements["rux-icon-text-rotate-vertical"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-text-rotation-none": LocalJSX.IntrinsicElements["rux-icon-text-rotation-none"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-textsms": LocalJSX.IntrinsicElements["rux-icon-textsms"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-texture": LocalJSX.IntrinsicElements["rux-icon-texture"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-theaters": LocalJSX.IntrinsicElements["rux-icon-theaters"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-thermal": LocalJSX.IntrinsicElements["rux-icon-thermal"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-thumb-down": LocalJSX.IntrinsicElements["rux-icon-thumb-down"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-thumb-down-alt": LocalJSX.IntrinsicElements["rux-icon-thumb-down-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-thumb-up": LocalJSX.IntrinsicElements["rux-icon-thumb-up"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-thumb-up-alt": LocalJSX.IntrinsicElements["rux-icon-thumb-up-alt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-thumbs-up-down": LocalJSX.IntrinsicElements["rux-icon-thumbs-up-down"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-time-to-leave": LocalJSX.IntrinsicElements["rux-icon-time-to-leave"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-timelapse": LocalJSX.IntrinsicElements["rux-icon-timelapse"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-timeline": LocalJSX.IntrinsicElements["rux-icon-timeline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-timer": LocalJSX.IntrinsicElements["rux-icon-timer"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-timer-10": LocalJSX.IntrinsicElements["rux-icon-timer-10"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-timer-3": LocalJSX.IntrinsicElements["rux-icon-timer-3"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-timer-off": LocalJSX.IntrinsicElements["rux-icon-timer-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-title": LocalJSX.IntrinsicElements["rux-icon-title"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-toc": LocalJSX.IntrinsicElements["rux-icon-toc"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-today": LocalJSX.IntrinsicElements["rux-icon-today"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-toggle-off": LocalJSX.IntrinsicElements["rux-icon-toggle-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-toggle-on": LocalJSX.IntrinsicElements["rux-icon-toggle-on"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-toll": LocalJSX.IntrinsicElements["rux-icon-toll"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tonality": LocalJSX.IntrinsicElements["rux-icon-tonality"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-touch-app": LocalJSX.IntrinsicElements["rux-icon-touch-app"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-toys": LocalJSX.IntrinsicElements["rux-icon-toys"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-track-changes": LocalJSX.IntrinsicElements["rux-icon-track-changes"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-traffic": LocalJSX.IntrinsicElements["rux-icon-traffic"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-train": LocalJSX.IntrinsicElements["rux-icon-train"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tram": LocalJSX.IntrinsicElements["rux-icon-tram"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-transfer-within-a-station": LocalJSX.IntrinsicElements["rux-icon-transfer-within-a-station"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-transform": LocalJSX.IntrinsicElements["rux-icon-transform"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-transit-enterexit": LocalJSX.IntrinsicElements["rux-icon-transit-enterexit"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-translate": LocalJSX.IntrinsicElements["rux-icon-translate"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-trending-down": LocalJSX.IntrinsicElements["rux-icon-trending-down"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-trending-flat": LocalJSX.IntrinsicElements["rux-icon-trending-flat"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-trending-up": LocalJSX.IntrinsicElements["rux-icon-trending-up"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-trip-origin": LocalJSX.IntrinsicElements["rux-icon-trip-origin"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tune": LocalJSX.IntrinsicElements["rux-icon-tune"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-turned-in": LocalJSX.IntrinsicElements["rux-icon-turned-in"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-turned-in-not": LocalJSX.IntrinsicElements["rux-icon-turned-in-not"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tv": LocalJSX.IntrinsicElements["rux-icon-tv"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-tv-off": LocalJSX.IntrinsicElements["rux-icon-tv-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-unarchive": LocalJSX.IntrinsicElements["rux-icon-unarchive"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-undo": LocalJSX.IntrinsicElements["rux-icon-undo"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-unfold-less": LocalJSX.IntrinsicElements["rux-icon-unfold-less"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-unfold-more": LocalJSX.IntrinsicElements["rux-icon-unfold-more"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-unsubscribe": LocalJSX.IntrinsicElements["rux-icon-unsubscribe"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-update": LocalJSX.IntrinsicElements["rux-icon-update"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-usb": LocalJSX.IntrinsicElements["rux-icon-usb"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-verified-user": LocalJSX.IntrinsicElements["rux-icon-verified-user"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vertical-align-bottom": LocalJSX.IntrinsicElements["rux-icon-vertical-align-bottom"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vertical-align-center": LocalJSX.IntrinsicElements["rux-icon-vertical-align-center"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vertical-align-top": LocalJSX.IntrinsicElements["rux-icon-vertical-align-top"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vertical-split": LocalJSX.IntrinsicElements["rux-icon-vertical-split"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vibration": LocalJSX.IntrinsicElements["rux-icon-vibration"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-video-call": LocalJSX.IntrinsicElements["rux-icon-video-call"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-video-label": LocalJSX.IntrinsicElements["rux-icon-video-label"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-video-library": LocalJSX.IntrinsicElements["rux-icon-video-library"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-videocam": LocalJSX.IntrinsicElements["rux-icon-videocam"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-videocam-off": LocalJSX.IntrinsicElements["rux-icon-videocam-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-videogame-asset": LocalJSX.IntrinsicElements["rux-icon-videogame-asset"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-agenda": LocalJSX.IntrinsicElements["rux-icon-view-agenda"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-array": LocalJSX.IntrinsicElements["rux-icon-view-array"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-carousel": LocalJSX.IntrinsicElements["rux-icon-view-carousel"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-column": LocalJSX.IntrinsicElements["rux-icon-view-column"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-comfy": LocalJSX.IntrinsicElements["rux-icon-view-comfy"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-compact": LocalJSX.IntrinsicElements["rux-icon-view-compact"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-day": LocalJSX.IntrinsicElements["rux-icon-view-day"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-headline": LocalJSX.IntrinsicElements["rux-icon-view-headline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-list": LocalJSX.IntrinsicElements["rux-icon-view-list"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-module": LocalJSX.IntrinsicElements["rux-icon-view-module"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-quilt": LocalJSX.IntrinsicElements["rux-icon-view-quilt"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-stream": LocalJSX.IntrinsicElements["rux-icon-view-stream"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-view-week": LocalJSX.IntrinsicElements["rux-icon-view-week"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vignette": LocalJSX.IntrinsicElements["rux-icon-vignette"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-visibility": LocalJSX.IntrinsicElements["rux-icon-visibility"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-visibility-off": LocalJSX.IntrinsicElements["rux-icon-visibility-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-voice-chat": LocalJSX.IntrinsicElements["rux-icon-voice-chat"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-voice-over-off": LocalJSX.IntrinsicElements["rux-icon-voice-over-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-voicemail": LocalJSX.IntrinsicElements["rux-icon-voicemail"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-volume-down": LocalJSX.IntrinsicElements["rux-icon-volume-down"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-volume-mute": LocalJSX.IntrinsicElements["rux-icon-volume-mute"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-volume-off": LocalJSX.IntrinsicElements["rux-icon-volume-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-volume-up": LocalJSX.IntrinsicElements["rux-icon-volume-up"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vpn-key": LocalJSX.IntrinsicElements["rux-icon-vpn-key"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-vpn-lock": LocalJSX.IntrinsicElements["rux-icon-vpn-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wallpaper": LocalJSX.IntrinsicElements["rux-icon-wallpaper"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-warning": LocalJSX.IntrinsicElements["rux-icon-warning"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-watch": LocalJSX.IntrinsicElements["rux-icon-watch"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-watch-later": LocalJSX.IntrinsicElements["rux-icon-watch-later"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-waves": LocalJSX.IntrinsicElements["rux-icon-waves"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wb-auto": LocalJSX.IntrinsicElements["rux-icon-wb-auto"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wb-cloudy": LocalJSX.IntrinsicElements["rux-icon-wb-cloudy"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wb-incandescent": LocalJSX.IntrinsicElements["rux-icon-wb-incandescent"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wb-iridescent": LocalJSX.IntrinsicElements["rux-icon-wb-iridescent"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wb-sunny": LocalJSX.IntrinsicElements["rux-icon-wb-sunny"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wc": LocalJSX.IntrinsicElements["rux-icon-wc"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-web": LocalJSX.IntrinsicElements["rux-icon-web"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-web-asset": LocalJSX.IntrinsicElements["rux-icon-web-asset"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-weekend": LocalJSX.IntrinsicElements["rux-icon-weekend"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-whatshot": LocalJSX.IntrinsicElements["rux-icon-whatshot"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-where-to-vote": LocalJSX.IntrinsicElements["rux-icon-where-to-vote"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-widgets": LocalJSX.IntrinsicElements["rux-icon-widgets"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wifi": LocalJSX.IntrinsicElements["rux-icon-wifi"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wifi-lock": LocalJSX.IntrinsicElements["rux-icon-wifi-lock"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wifi-off": LocalJSX.IntrinsicElements["rux-icon-wifi-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wifi-tethering": LocalJSX.IntrinsicElements["rux-icon-wifi-tethering"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-work": LocalJSX.IntrinsicElements["rux-icon-work"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-work-off": LocalJSX.IntrinsicElements["rux-icon-work-off"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-work-outline": LocalJSX.IntrinsicElements["rux-icon-work-outline"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-wrap-text": LocalJSX.IntrinsicElements["rux-icon-wrap-text"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-youtube-searched-for": LocalJSX.IntrinsicElements["rux-icon-youtube-searched-for"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-zoom-in": LocalJSX.IntrinsicElements["rux-icon-zoom-in"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-zoom-in-map": LocalJSX.IntrinsicElements["rux-icon-zoom-in-map"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-zoom-out": LocalJSX.IntrinsicElements["rux-icon-zoom-out"] & JSXBase.HTMLAttributes; /** * WARNING: This is an autogenerated component. * Do not make any changes to this file or they will be overwritten on build. * The template for this file is located in the generate-icons.js util file. * / * /** */ "rux-icon-zoom-out-map": LocalJSX.IntrinsicElements["rux-icon-zoom-out-map"] & JSXBase.HTMLAttributes; "rux-indeterminate-progress": LocalJSX.IntrinsicElements["rux-indeterminate-progress"] & JSXBase.HTMLAttributes; "rux-input": LocalJSX.IntrinsicElements["rux-input"] & JSXBase.HTMLAttributes; /** * A Log is a tabular representation of application events and may include username, priority, equipment type, signal type, etc. As part of the [Notification System](https://www.astrouxds.com/design-guidelines/notifications), Logs provide sorting and filtering function for examining events. */ "rux-log": LocalJSX.IntrinsicElements["rux-log"] & JSXBase.HTMLAttributes; "rux-menu": LocalJSX.IntrinsicElements["rux-menu"] & JSXBase.HTMLAttributes; "rux-menu-item": LocalJSX.IntrinsicElements["rux-menu-item"] & JSXBase.HTMLAttributes; "rux-menu-item-divider": LocalJSX.IntrinsicElements["rux-menu-item-divider"] & JSXBase.HTMLAttributes; "rux-monitoring-icon": LocalJSX.IntrinsicElements["rux-monitoring-icon"] & JSXBase.HTMLAttributes; "rux-monitoring-progress-icon": LocalJSX.IntrinsicElements["rux-monitoring-progress-icon"] & JSXBase.HTMLAttributes; "rux-notification": LocalJSX.IntrinsicElements["rux-notification"] & JSXBase.HTMLAttributes; /** * This component should be used exclusively with RuxSelect. * It's main function is to broadcast to RuxSelect when the value property changes. * RuxSelect can only listen for slot change, which won't fire in the scenario where there * might be 2 options and only their values change. Because the nodes themselves aren't added or removed, * onSlotchange doesn't fire. */ "rux-option": LocalJSX.IntrinsicElements["rux-option"] & JSXBase.HTMLAttributes; "rux-option-group": LocalJSX.IntrinsicElements["rux-option-group"] & JSXBase.HTMLAttributes; "rux-pop-up": LocalJSX.IntrinsicElements["rux-pop-up"] & JSXBase.HTMLAttributes; "rux-progress": LocalJSX.IntrinsicElements["rux-progress"] & JSXBase.HTMLAttributes; "rux-push-button": LocalJSX.IntrinsicElements["rux-push-button"] & JSXBase.HTMLAttributes; "rux-radio": LocalJSX.IntrinsicElements["rux-radio"] & JSXBase.HTMLAttributes; "rux-radio-group": LocalJSX.IntrinsicElements["rux-radio-group"] & JSXBase.HTMLAttributes; "rux-ruler": LocalJSX.IntrinsicElements["rux-ruler"] & JSXBase.HTMLAttributes; "rux-segmented-button": LocalJSX.IntrinsicElements["rux-segmented-button"] & JSXBase.HTMLAttributes; "rux-select": LocalJSX.IntrinsicElements["rux-select"] & JSXBase.HTMLAttributes; "rux-slider": LocalJSX.IntrinsicElements["rux-slider"] & JSXBase.HTMLAttributes; "rux-status": LocalJSX.IntrinsicElements["rux-status"] & JSXBase.HTMLAttributes; "rux-switch": LocalJSX.IntrinsicElements["rux-switch"] & JSXBase.HTMLAttributes; "rux-tab": LocalJSX.IntrinsicElements["rux-tab"] & JSXBase.HTMLAttributes; "rux-tab-panel": LocalJSX.IntrinsicElements["rux-tab-panel"] & JSXBase.HTMLAttributes; "rux-tab-panels": LocalJSX.IntrinsicElements["rux-tab-panels"] & JSXBase.HTMLAttributes; "rux-table": LocalJSX.IntrinsicElements["rux-table"] & JSXBase.HTMLAttributes; "rux-table-body": LocalJSX.IntrinsicElements["rux-table-body"] & JSXBase.HTMLAttributes; "rux-table-cell": LocalJSX.IntrinsicElements["rux-table-cell"] & JSXBase.HTMLAttributes; "rux-table-header": LocalJSX.IntrinsicElements["rux-table-header"] & JSXBase.HTMLAttributes; "rux-table-header-cell": LocalJSX.IntrinsicElements["rux-table-header-cell"] & JSXBase.HTMLAttributes; "rux-table-header-row": LocalJSX.IntrinsicElements["rux-table-header-row"] & JSXBase.HTMLAttributes; "rux-table-row": LocalJSX.IntrinsicElements["rux-table-row"] & JSXBase.HTMLAttributes; "rux-tabs": LocalJSX.IntrinsicElements["rux-tabs"] & JSXBase.HTMLAttributes; "rux-tag": LocalJSX.IntrinsicElements["rux-tag"] & JSXBase.HTMLAttributes; "rux-textarea": LocalJSX.IntrinsicElements["rux-textarea"] & JSXBase.HTMLAttributes; "rux-time-region": LocalJSX.IntrinsicElements["rux-time-region"] & JSXBase.HTMLAttributes; "rux-timeline": LocalJSX.IntrinsicElements["rux-timeline"] & JSXBase.HTMLAttributes; "rux-toast": LocalJSX.IntrinsicElements["rux-toast"] & JSXBase.HTMLAttributes; "rux-toast-stack": LocalJSX.IntrinsicElements["rux-toast-stack"] & JSXBase.HTMLAttributes; "rux-tooltip": LocalJSX.IntrinsicElements["rux-tooltip"] & JSXBase.HTMLAttributes; "rux-track": LocalJSX.IntrinsicElements["rux-track"] & JSXBase.HTMLAttributes; "rux-tree": LocalJSX.IntrinsicElements["rux-tree"] & JSXBase.HTMLAttributes; "rux-tree-node": LocalJSX.IntrinsicElements["rux-tree-node"] & JSXBase.HTMLAttributes; } } }