mirror of
https://github.com/ONLYOFFICE/onlyoffice.github.io.git
synced 2026-02-10 18:05:06 +08:00
24 lines
428 B
JavaScript
24 lines
428 B
JavaScript
export default {
|
|
title: 'Components/Label',
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
description: {
|
|
component: 'Various styled labels from ONLYOFFICE plugin UI.'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export const Header = () => `
|
|
<label class="header">Header label</label>
|
|
`;
|
|
|
|
Header.storyName = 'Header Label';
|
|
|
|
export const Link = () => `
|
|
<label class="link">Link label</label>
|
|
`;
|
|
|
|
Link.storyName = 'Link Label';
|