ui icon indicating copy to clipboard operation
ui copied to clipboard

Duplicated Box on CheckBox component

Open luana00gomes opened this issue 2 years ago • 0 comments

I am trying to use a Checkbox component, but it is showing a duplicated box on the screen.

Code:

<CardFooter>
        <Row className="m-0" style={{justifyContent:'space-between'}}>
          <Checkbox
            checked={isChecked}
            onChange={() => setIsChecked(!isChecked)}
          >
            Li e concordo
          </Checkbox>

          <Button
            status="Primary"
            onClick={onSave}
            type="button"
            size="Small"
            disabled={!isChecked} 
            style={{marginLeft: "10px"}}
          >
            Enviar Oportunidade
          </Button>
        </Row>
 </CardFooter>

Captura de tela de 2023-10-27 18-06-09

PALJs version: "@paljs/ui": "^1.1.1"

luana00gomes avatar Oct 27 '23 21:10 luana00gomes