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