mirror of
https://github.com/ONLYOFFICE/onlyoffice.github.io.git
synced 2026-02-10 18:05:06 +08:00
19 lines
416 B
JavaScript
19 lines
416 B
JavaScript
export default {
|
|
title: 'Components/Checkbox',
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: 'Checkbox from ONLYOFFICE plugin UI.'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export const Basic = () => `
|
|
<input type="checkbox" class="form-control" style="vertical-align: middle;">
|
|
<label style="margin-left: 5px; vertical-align: middle;">Checkbox</label>
|
|
`;
|
|
|
|
Basic.storyName = 'Default';
|