import React from "react"; import { RootProps } from "./types"; import { RootElementContext } from "./context"; export const Root = ({ options, children }: RootProps) => ( {children} ); // Export children export { Title } from "./Title"; export { Icon } from "./Icon";