@gluestack-ui/themed
Version:
A universal themed components for React Native, Next.js & React
10 lines (9 loc) • 342 B
JavaScript
import { createIcon } from '@gluestack-ui/icon';
import Root from './styled-components/Root';
import { Root as IconRoot } from './styled-components';
export const Icon = createIcon({
Root,
});
export * from './Icons';
const createIconUI = ({ ...props }) => createIcon({ Root: IconRoot, ...props });
export { createIconUI as createIcon };