import { VFC } from 'react'; import { ReactComponent as ProPlanIcon } from 'assets/icons/pro-enterprise-feature-badge.svg'; import { ReactComponent as ProPlanIconLight } from 'assets/icons/pro-enterprise-feature-badge-light.svg'; import { ThemeMode } from 'component/common/ThemeMode/ThemeMode'; type EnterpriseBadgeProps = { size?: number; }; export const EnterpriseBadge: VFC = ({ size = 16 }) => ( } lightmode={} /> );