
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@arterial/checkbox
Advanced tools
Another React Material Checkbox
npm install @arterial/checkbox
@use "@material/checkbox/index.scss" as checkbox;
@include checkbox.core-styles;
import '@material/checkbox/dist/mdc.checkbox.css';
import {Checkbox} from '@arterial/checkbox';
function Checked() {
const [checked, setChecked] = useState(true);
return (
<Checkbox
checked={checked}
id="checkbox-checked"
onChange={e => setChecked(e.target.checked)}
/>
);
}
function Unchecked() {
const [checked, setChecked] = useState(false);
return (
<Checkbox
checked={checked}
id="checkbox-unchecked"
onChange={e => setChecked(e.target.checked)}
/>
);
}
function Indeterminate() {
const [checked, setChecked] = useState(false);
const [indeterminate, setIndeterminate] = useState(true);
return (
<Checkbox
checked={checked}
id="checkbox-indeterminate"
indeterminate={indeterminate}
onChange={e => {
setChecked(e.target.checked);
setIndeterminate(e.target.indeterminate);
}}
/>
);
}
function Label() {
const [checked, setChecked] = useState(true);
return (
<Checkbox
checked={checked}
id="checkbox-label"
label="Checkbox"
onChange={e => setChecked(e.target.checked)}
/>
);
}
function AlignEnd() {
const [checked, setChecked] = useState(true);
return (
<Checkbox
alignEnd
checked={checked}
id="checkbox-align-end"
label="Checkbox"
onChange={e => setChecked(e.target.checked)}
/>
);
}
<Checkbox
disabled
id="checkbox-disabled"
label="Checkbox"
onChange={() => {}}
/>
| Name | Type | Description |
|---|---|---|
| alignEnd | boolean | Aligns root element on the right side of the label. |
| checked | boolean | Indicates whether the element is checked. |
| className | string | Classes to be applied to the root element. |
| disabled | boolean | Indicates whether the element is disabled. |
| id | string | Id of the element. |
| indeterminate | bool | Indicates whether the checkbox is indeterminate. |
| label | string | Text to be displayed next to the root element. |
| onChange | function | Change event handler. |
| ripple | boolean | Enables ripple within root element. Defaults to true. |
| style | object | Styles to be applied to the root element. |
| value | string | Value of input. |
FAQs
Another React Material Checkbox
We found that @arterial/checkbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.