@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
17 lines (15 loc) • 556 B
JavaScript
import * as React from "react";
import styled from "styled-components";
var StyledBadgeList = styled.ul.withConfig({
displayName: "BadgeList__StyledBadgeList",
componentId: "sc-10067yc-0"
})(["margin:0;padding:0;display:flex;flex-direction:column;"]);
var BadgeList = function BadgeList(_ref) {
var children = _ref.children,
dataTest = _ref.dataTest;
return /*#__PURE__*/React.createElement(StyledBadgeList, {
"data-test": dataTest
}, children);
};
export { default as BadgeListItem } from "./BadgeListItem";
export default BadgeList;