@onehat/ui
Version:
Base UI for OneHat apps
12 lines (9 loc) • 428 B
JavaScript
import { createIcon } from "../Gluestack/icon";
// Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.
import { Path, Svg } from 'react-native-svg';
const SvgComponent = createIcon({
Root: Svg,
viewBox: '0 0 512 512',
path: <Path d="M256 512a256 256 0 100-512 256 256 0 100 512z" />,
});
export default SvgComponent