svelte-remix 0.2.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -111,6 +111,14 @@ Use `ariaLabel` prop to modify the `aria-label` value.
|
|
|
111
111
|
<BankFillBUILDINGS ariaLabel="bank buildings svg icon" />
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
+
## Unfocusable icon
|
|
115
|
+
|
|
116
|
+
If you want to make an icon unfocusable, add `tabindex="-1"`.
|
|
117
|
+
|
|
118
|
+
```html
|
|
119
|
+
<BankFillBUILDINGS tabindex="-1" />
|
|
120
|
+
```
|
|
121
|
+
|
|
114
122
|
## Passing down other attributes
|
|
115
123
|
|
|
116
124
|
You can pass other attibutes as well.
|