| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/node_modules/vuetify/types/services/ |
Upload File : |
// Types
import { Component } from 'vue'
export interface Icons extends IconsOptions {
iconfont: Iconfont
values: VuetifyIcons
}
export type Iconfont = 'mdi' | 'mdiSvg' | 'md' | 'fa' | 'faSvg' | 'fa4'
export interface IconsOptions {
component?: Component | string
/**
* Select a base icon font to use. Note that none of these are included, you must install them yourself
*
* md: <a href="https://material.io/icons">material.io</a> (default)
* mdi: <a href="https://materialdesignicons.com">MDI</a>
* fa: <a href="https://fontawesome.com/get-started/web-fonts-with-css">FontAwesome 5</a>
* fa4: <a href="https://fontawesome.com/v4.7.0/">FontAwesome 4</a>
* faSvg: <a href="https://fontawesome.com/how-to-use/on-the-web/using-with/vuejs">FontAwesome SVG</a>
*/
iconfont?: Iconfont
values?: Partial<VuetifyIcons>
}
export type VuetifyIconComponent = {
component: Component | string
props?: object
}
export type VuetifyIcon = string | VuetifyIconComponent
export interface VuetifyIcons {
complete: VuetifyIcon
cancel: VuetifyIcon
close: VuetifyIcon
delete: VuetifyIcon
clear: VuetifyIcon
success: VuetifyIcon
info: VuetifyIcon
warning: VuetifyIcon
error: VuetifyIcon
prev: VuetifyIcon
next: VuetifyIcon
checkboxOn: VuetifyIcon
checkboxOff: VuetifyIcon
checkboxIndeterminate: VuetifyIcon
delimiter: VuetifyIcon
sort: VuetifyIcon
expand: VuetifyIcon
menu: VuetifyIcon
subgroup: VuetifyIcon
dropdown: VuetifyIcon
radioOn: VuetifyIcon
radioOff: VuetifyIcon
edit: VuetifyIcon
ratingEmpty: VuetifyIcon
ratingFull: VuetifyIcon
ratingHalf: VuetifyIcon
loading: VuetifyIcon
first: VuetifyIcon
last: VuetifyIcon
unfold: VuetifyIcon
file: VuetifyIcon
plus: VuetifyIcon
minus: VuetifyIcon
[name: string]: VuetifyIcon
}