@financial-times/o3-foundation
Version:
Origami foundations with design tokens
13 lines (12 loc) • 475 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { getStyleAttributes } from "./getStyleAttributes";
const UnorderedList = ({ children, theme }) => {
return /* @__PURE__ */ jsx("ul", { className: "o3-typography-ul", ...getStyleAttributes({ theme }), children });
};
const OrderedList = ({ children, theme }) => {
return /* @__PURE__ */ jsx("ol", { className: "o3-typography-ol", ...getStyleAttributes({ theme }), children });
};
export {
OrderedList,
UnorderedList
};