diff options
| author | taehoon <th.dev91@gmail.com> | 2019-03-22 13:49:58 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-03 11:40:06 -0400 |
| commit | 91502a25a4feaec60891ee5f7b7623fe4e05e0a8 (patch) | |
| tree | ae2f8b9f83c9df473f870c3d9b16a338b2c36431 /src/components/checkbox/checkbox.js | |
| parent | cf72ebb40720b21736c56289a7bbffa9b67e2d2d (diff) | |
Add a css class to the checkbox indicator
Diffstat (limited to 'src/components/checkbox/checkbox.js')
| -rw-r--r-- | src/components/checkbox/checkbox.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/checkbox/checkbox.js b/src/components/checkbox/checkbox.js index 324a7597..76e7e4f4 100644 --- a/src/components/checkbox/checkbox.js +++ b/src/components/checkbox/checkbox.js @@ -36,7 +36,7 @@ export default { return ( <label class="checkbox" {...wrapperProps}> <input type="checkbox" {...inputProps} /> - <i /> + <i class="checkbox-indicator" /> {children && <span>{children}</span>} </label> ) |
