style: remove emojis from media app format presets

This commit is contained in:
2026-02-25 18:34:39 +01:00
parent 4898ad942b
commit 4668d771c1
2 changed files with 12 additions and 12 deletions

View File

@@ -49,7 +49,7 @@ export function FormatPresets({ inputFormat, onPresetSelect, disabled = false }:
disabled={disabled}
>
<div className="flex items-center gap-2 w-full">
<span className="text-2xl">{preset.icon}</span>
{preset.icon && <span className="text-2xl">{preset.icon}</span>}
<div className="flex-1 min-w-0">
<div className="font-semibold text-sm">{preset.name}</div>
</div>

View File

@@ -19,7 +19,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'youtube-video',
name: 'YouTube Video',
description: '1080p MP4, optimized for YouTube',
icon: '🎬',
icon: '',
category: 'video',
outputFormat: 'mp4',
options: {
@@ -35,7 +35,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'instagram-video',
name: 'Instagram Video',
description: 'Square 1:1 format for Instagram',
icon: '📸',
icon: '',
category: 'video',
outputFormat: 'mp4',
options: {
@@ -51,7 +51,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'twitter-video',
name: 'Twitter Video',
description: '720p, optimized for Twitter',
icon: '🐦',
icon: '',
category: 'video',
outputFormat: 'mp4',
options: {
@@ -67,7 +67,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'web-video',
name: 'Web Optimized',
description: 'Small file size for web streaming',
icon: '🌐',
icon: '',
category: 'video',
outputFormat: 'mp4',
options: {
@@ -85,7 +85,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'podcast-audio',
name: 'Podcast',
description: 'MP3, optimized for voice',
icon: '🎙️',
icon: '',
category: 'audio',
outputFormat: 'mp3',
options: {
@@ -99,7 +99,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'music-high-quality',
name: 'High Quality Music',
description: 'MP3, 320kbps for music',
icon: '🎵',
icon: '',
category: 'audio',
outputFormat: 'mp3',
options: {
@@ -113,7 +113,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'audiobook',
name: 'Audiobook',
description: 'Mono, small file size',
icon: '📚',
icon: '',
category: 'audio',
outputFormat: 'mp3',
options: {
@@ -129,7 +129,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'web-thumbnail',
name: 'Web Thumbnail',
description: 'JPG, 800px width, optimized',
icon: '🖼️',
icon: '',
category: 'image',
outputFormat: 'jpg',
options: {
@@ -141,7 +141,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'hd-image',
name: 'HD Image',
description: 'PNG, high quality, lossless',
icon: '🎨',
icon: '',
category: 'image',
outputFormat: 'png',
options: {
@@ -152,7 +152,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'social-media-image',
name: 'Social Media',
description: 'JPG, 1200px, optimized',
icon: '📱',
icon: '',
category: 'image',
outputFormat: 'jpg',
options: {
@@ -164,7 +164,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
id: 'web-optimized-image',
name: 'Web Optimized',
description: 'WebP, small file size',
icon: '',
icon: '',
category: 'image',
outputFormat: 'webp',
options: {