import type { SpaceUtilityPanelId } from '../model/types';
export const ANCHOR_ICON = {
sound: (
),
notes: (
),
};
export const RAIL_ICON = {
controlCenter: (
),
inbox: (
),
};
export const UTILITY_PANEL_TITLE: Record = {
'control-center': 'Quick Controls',
inbox: '인박스',
paywall: 'PRO',
'manage-plan': '플랜 관리',
};
export const formatThoughtCount = (count: number) => {
if (count < 1) {
return '0';
}
if (count > 9) {
return '9+';
}
return String(count);
};