mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Removed margin top of the toggle component (#1120)
This commit is contained in:
parent
37f9e3c4a5
commit
1c9c1afb08
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
export default ({ defaultChecked, onChange }) => {
|
||||
return (
|
||||
<label className="form-switch mt-3">
|
||||
<label className="form-switch">
|
||||
<input className="form-check-input" type="checkbox" defaultChecked={defaultChecked} onChange={onChange} />
|
||||
</label>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue