1
0
mirror of https://github.com/tabler/tabler-icons.git synced 2025-09-02 02:12:49 +02:00
This commit is contained in:
codecalm
2024-03-14 11:56:44 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -19,10 +19,10 @@ const createSolidComponent = (
height: () => (localProps.size != null ? localProps.size : attributes.height),
...(type === 'filled'
? {
fill: () => (localProps.color != null ? localProps.color : attributes.stroke),
fill: () => (localProps.color != null ? localProps.color : 'currentColor'),
}
: {
stroke: () => (localProps.color != null ? localProps.color : attributes.stroke),
stroke: () => (localProps.color != null ? localProps.color : 'currentColor'),
'stroke-width': () =>
localProps.stroke != null ? localProps.stroke : attributes['stroke-width'],
}),

View File

@@ -9,7 +9,7 @@ const createVueComponent =
iconNamePascal: string,
iconNode: IconNode,
): Icon =>
({ size, color, class: classes, stroke, ...rest }: IconProps, { attrs, slots }) => {
({ size, color = 'currentColor', class: classes, stroke, ...rest }: IconProps, { attrs, slots }) => {
return h(
'svg',
{