mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-21 06:59:09 +00:00
refactor: simple migrations and tweaks to cuesheet
This commit is contained in:
committed by
Carlos Valente
parent
c8c2a05724
commit
aefa4cbf44
@@ -0,0 +1,14 @@
|
||||
import { IoCheckmark } from 'react-icons/io5';
|
||||
import { Checkbox as BaseCheckbox } from '@base-ui-components/react/checkbox';
|
||||
|
||||
import style from './Checkbox.module.scss';
|
||||
|
||||
export default function Checkbox(checkboxProps: BaseCheckbox.Root.Props) {
|
||||
return (
|
||||
<BaseCheckbox.Root className={style.checkbox} {...checkboxProps}>
|
||||
<BaseCheckbox.Indicator className={style.indicator}>
|
||||
<IoCheckmark className={style.icon} />
|
||||
</BaseCheckbox.Indicator>
|
||||
</BaseCheckbox.Root>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user