Skip to content

Commit 2b17772

Browse files
Added class for iconset
1 parent e9f8843 commit 2b17772

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/plugin/composables/classes.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ import { componentName } from '../utils/globals';
1111

1212
// ------------------------------------------------ Main Container //
1313
export const useInlineFieldsContainerClass: UseInlineFieldsContainerClass = (options) => {
14-
const { field = '', density = '', disabled = false, tableField = false } = options;
14+
const { field = '', density = '', disabled = false, iconSet = 'mdi', tableField = false } = options;
1515

1616
return {
1717
[`${componentName}`]: true,
1818
[`${componentName}--container`]: true,
1919
[`${componentName}--container-disabled`]: unref(disabled),
2020
[`${componentName}--container-table`]: tableField,
21+
[`${componentName}--container-icon-set-${iconSet}`]: true,
2122
[`${componentName}--container-${field}`]: true,
2223
[`${componentName}--container-${field}-${density}`]: true,
2324
[`vi-${field}`]: true,

0 commit comments

Comments
 (0)