mirror of
https://github.com/ONLYOFFICE/onlyoffice.github.io.git
synced 2026-02-10 18:05:06 +08:00
18 lines
352 B
JavaScript
18 lines
352 B
JavaScript
export default {
|
|
title: 'Components/Separator',
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: 'Separator from ONLYOFFICE plugin UI.'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export const Horizontal = () => `
|
|
<div class="separator horizontal" style="margin: 5px 0;"></div>
|
|
`;
|
|
|
|
Horizontal.storyName = 'Horizontal Separator';
|