ze-react-component-library
Version:
ZeroETP React Component Library
21 lines (19 loc) • 555 B
JavaScript
import "antd/es/alert/style";
import _Alert from "antd/es/alert";
import "antd/es/space/style";
import _Space from "antd/es/space";
import React from "react";
var StoryBookUseCaseDescription = function StoryBookUseCaseDescription(_a) {
var info = _a.info,
children = _a.children;
return /*#__PURE__*/React.createElement(_Space, {
direction: "vertical",
style: {
width: "100%"
}
}, /*#__PURE__*/React.createElement(_Alert, {
message: info,
type: "info"
}), children);
};
export default StoryBookUseCaseDescription;