import * as React from 'react';
import {
Checkbox as CoreCheckbox,
CheckboxProps as CoreCheckboxProps
} from 'wix-ui-core/dist/src/components/checkbox';
import CheckboxChecked from 'wix-ui-icons-common/system/CheckboxChecked';
import CheckboxIndeterminate from 'wix-ui-icons-common/system/CheckboxIndeterminate';
import style from './Checkbox.st.css';
import { withStylable } from 'wix-ui-core/dist/src/utils/withStylable';
const defaultProps = {
checkedIcon: ,
indeterminateIcon: (
)
};
export const Checkbox = withStylable(
CoreCheckbox,
style,
() => null,
defaultProps
);
Checkbox.displayName = 'Checkbox';