Explorar el Código

Update tick box controls

Apply styles on block.
pull/1/head
TheoryOfNekomata hace 11 meses
padre
commit
daffeb7b53
Se han modificado 3 ficheros con 9 adiciones y 3 borrados
  1. +3
    -1
      packages/web-kitchensink-reactnext/src/categories/option/react/components/RadioTickBox/index.tsx
  2. +3
    -1
      packages/web-kitchensink-reactnext/src/categories/option/react/components/ToggleSwitch/index.tsx
  3. +3
    -1
      packages/web-kitchensink-reactnext/src/categories/option/react/components/ToggleTickBox/index.tsx

+ 3
- 1
packages/web-kitchensink-reactnext/src/categories/option/react/components/RadioTickBox/index.tsx Ver fichero

@@ -25,7 +25,9 @@ export const RadioTickBox = React.forwardRef<RadioTickBoxDerivedElement, RadioTi
return (
<div
className={clsx(
'flex gap-x-4 flex-wrap',
'gap-x-4 flex-wrap',
block && 'flex',
!block && 'inline-flex align-center',
className,
)}
style={style}


+ 3
- 1
packages/web-kitchensink-reactnext/src/categories/option/react/components/ToggleSwitch/index.tsx Ver fichero

@@ -45,7 +45,9 @@ export const ToggleSwitch = React.forwardRef<ToggleSwitchDerivedElement, ToggleS
return (
<div
className={clsx(
'flex gap-x-4 flex-wrap',
'gap-x-4 flex-wrap',
block && 'flex',
!block && 'inline-flex align-center',
className,
)}
style={style}


+ 3
- 1
packages/web-kitchensink-reactnext/src/categories/option/react/components/ToggleTickBox/index.tsx Ver fichero

@@ -42,7 +42,9 @@ export const ToggleTickBox = React.forwardRef<ToggleTickBoxDerivedElement, Toggl
return (
<div
className={clsx(
'flex gap-x-4 flex-wrap',
'gap-x-4 flex-wrap',
block && 'flex',
!block && 'inline-flex align-center',
className,
)}
style={style}


Cargando…
Cancelar
Guardar