@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.
18 lines (16 loc) • 503 B
JavaScript
import * as React from "react";
import styled from "styled-components";
const StyledBadgeList = styled.ul.withConfig({
displayName: "BadgeList__StyledBadgeList",
componentId: "sc-1gcebo1-0"
})(["margin:0;padding:0;display:flex;flex-direction:column;"]);
const BadgeList = ({
children,
dataTest
}) => {
return /*#__PURE__*/React.createElement(StyledBadgeList, {
"data-test": dataTest
}, children);
};
export { default as BadgeListItem } from "./BadgeListItem";
export default BadgeList;