import { CreditCard, Home, User } from 'lucide-react'; import { SidebarConfigSchema } from '@kit/ui/sidebar-schema'; import featureFlagsConfig from '~/config/feature-flags.config'; import pathsConfig from '~/config/paths.config'; const iconClasses = 'w-4'; const routes = [ { label: 'common:homeTabLabel', path: pathsConfig.app.home, Icon: , end: true, }, { label: 'common:yourAccountTabLabel', path: pathsConfig.app.personalAccountSettings, Icon: , }, ]; if (featureFlagsConfig.enablePersonalAccountBilling) { routes.push({ label: 'common:billingTabLabel', path: pathsConfig.app.personalAccountBilling, Icon: , }); } export const personalAccountSidebarConfig = SidebarConfigSchema.parse({ routes, });