diff options
| -rw-r--r-- | gulpfile.js | 2 | ||||
| -rw-r--r-- | icons-react/index.d.js | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/gulpfile.js b/gulpfile.js index a3a29026..18a63d29 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -570,7 +570,7 @@ gulp.task('svg-to-react', gulp.series('clean-react', async function (cb) {  	};  	let indexCode = '', -		indexDCode = `import { FC, SVGAttributes } from 'react';\n\ninterface TablerIconProps extends SVGAttributes<SVGElement> { color?: string; size?: string | number; }\n\ntype TablerIcon = FC<TablerIconProps>;\n\n`; +		indexDCode = `import { FC, SVGAttributes } from 'react';\n\ninterface TablerIconProps extends SVGAttributes<SVGElement> { color?: string; size?: string | number; stroke?: string | number; }\n\ntype TablerIcon = FC<TablerIconProps>;\n\n`;  	await asyncForEach(files, async function (file) {  		const svgCode = optimizeSvgCode(fs.readFileSync(file).toString()), diff --git a/icons-react/index.d.js b/icons-react/index.d.js index 1b868f6b..f278607f 100644 --- a/icons-react/index.d.js +++ b/icons-react/index.d.js @@ -1,6 +1,6 @@  import { FC, SVGAttributes } from 'react'; -interface TablerIconProps extends SVGAttributes<SVGElement> { color?: string; size?: string | number; } +interface TablerIconProps extends SVGAttributes<SVGElement> { color?: string; size?: string | number; stroke?: string | number; }  type TablerIcon = FC<TablerIconProps>; | 
