import React from 'react'; import styled from 'styled-components/native'; import Box from '../../primitives/Box'; import type { IBadgeProps } from './types'; import { useThemeProps } from '../../../hooks'; const StyledBadge = styled(Box)({}); const Badge = ({ children, style, ...props }: IBadgeProps, ref: any) => { let newProps = useThemeProps('Badge', props); return ( {children} ); }; export default React.memo(React.forwardRef(Badge)); export type { IBadgeProps };