1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

[CL-80] feat: indeterminate checkbox (#6357)

* add indeterminate svg
This commit is contained in:
Will Martin
2023-09-28 09:04:16 -04:00
committed by GitHub
parent 8bef0883f5
commit 58cd35ef76
2 changed files with 29 additions and 5 deletions

View File

@@ -110,3 +110,12 @@ export const Custom: Story = {
`,
}),
};
export const Indeterminate: Story = {
render: (args) => ({
props: args,
template: `
<input type="checkbox" bitCheckbox [indeterminate]="true">
`,
}),
};