diff options
author | codecalm <codecalm@gmail.com> | 2020-09-07 12:48:25 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-09-07 12:48:25 +0200 |
commit | e0648781073ddb5a8b25d0444162c5ea8017a0a4 (patch) | |
tree | ddc5ecb5c4d2d90a03d2ac69976ce340317a8c0e /icons-react/index.d.js | |
parent | package fixes (diff) | |
download | tabler-icons-e0648781073ddb5a8b25d0444162c5ea8017a0a4.tar.xz |
stroke props
Diffstat (limited to 'icons-react/index.d.js')
-rw-r--r-- | icons-react/index.d.js | 2 |
1 files changed, 1 insertions, 1 deletions
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>; |