export const SettingItem = ( title: string, subtitle?: string, action?: string, id?: string, visible: boolean = true, ) => { return `
${title} ${subtitle ? `${subtitle}` : ''}
${action ? `
${action}
` : ''}
` }