21 lines
784 B
JavaScript
21 lines
784 B
JavaScript
import Base from './Base';
|
|
import Link from './Link';
|
|
import Paragraph from './Paragraph';
|
|
import Text from './Text';
|
|
import Title from './Title';
|
|
import Typography from './Typography';
|
|
Typography.Text = Text;
|
|
Typography.Title = Title;
|
|
Typography.Paragraph = Paragraph;
|
|
Typography.Link = Link;
|
|
Typography.Base = Base;
|
|
Typography.install = function (app) {
|
|
app.component(Typography.name, Typography);
|
|
app.component(Typography.Text.displayName, Text);
|
|
app.component(Typography.Title.displayName, Title);
|
|
app.component(Typography.Paragraph.displayName, Paragraph);
|
|
app.component(Typography.Link.displayName, Link);
|
|
return app;
|
|
};
|
|
export { Text as TypographyText, Title as TypographyTitle, Paragraph as TypographyParagraph, Link as TypographyLink };
|
|
export default Typography; |