Skip to content

Commit

Permalink
title size base-icon fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantgillespie committed Jul 14, 2023
1 parent 686ca26 commit 0c0cb0f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/src/base-icon/base-icon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export interface BaseIconProps {
/**
* Size of the icon. Controls both font size and optical size
* @values small, medium, large
* @values small, medium, large, title
*/
size?: 'small' | 'medium' | 'large';
size?: 'small' | 'medium' | 'large' | 'title';
/**
* Weight of the icon. Similar to font-weight
Expand All @@ -35,6 +35,8 @@ const opticalSize = computed(() => {
return 24;
case 'large':
return 48;
case 'title':
return 96;
}
});
Expand Down

0 comments on commit 0c0cb0f

Please sign in to comment.