update errors handler
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
import { IconImageFile, IconVideoFile, IconAudioFile, IconDocument } from '@/app/ui/icons/icons';
|
||||
export function SupportedFormats() {
|
||||
return (
|
||||
<div className="supported-formats">
|
||||
<div className="formats-title">
|
||||
Поддерживаемые форматы
|
||||
</div>
|
||||
|
||||
<div className="format-group">
|
||||
<div className="format-type image">
|
||||
<IconImageFile /> Изображения
|
||||
</div>
|
||||
<div className="format-list">
|
||||
JPEG, PNG, GIF, BMP
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="format-group hidden">
|
||||
<div className="format-type video">
|
||||
<IconVideoFile /> Видео
|
||||
</div>
|
||||
<div className="format-list">
|
||||
MP4, AVI, MOV, WMV
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="format-group hidden">
|
||||
<div className="format-type audio">
|
||||
<IconAudioFile /> Аудио
|
||||
</div>
|
||||
<div className="format-list">
|
||||
MP3, WAV, FLAC, AAC
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="format-group hidden">
|
||||
<div className="format-type document">
|
||||
<IconDocument /> Документы
|
||||
</div>
|
||||
<div className="format-list">
|
||||
PDF, DOC, DOCX
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user