ソースを参照

Update tick box controls

Apply styles on block.
pull/1/head
TheoryOfNekomata 11ヶ月前
コミット
daffeb7b53
3個のファイルの変更9行の追加3行の削除
  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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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}


読み込み中…
キャンセル
保存