norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
18 lines • 818 B
JavaScript
import React from "react";
import { Typography } from "@mui/material";
import { ChatMessageBalloonStyle } from "../styles";
export default function Content(_a) {
var label = _a.label, description = _a.description, direction = _a.direction, className = _a.className;
return (React.createElement(ChatMessageBalloonStyle, { direction: direction, className: className },
React.createElement(Typography, { variant: "subtitle2", sx: {
fontSize: "1rem",
fontWeight: "600",
marginBottom: '5px'
} }, label),
React.createElement(Typography, { variant: "body1", sx: {
fontSize: "0.9rem",
fontWeight: "400",
marginBottom: '5px'
} }, description)));
}
//# sourceMappingURL=Content.js.map