mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
docs(site): add "No Skin" option to installation skin picker (#1525)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { useStore } from '@nanostores/react';
|
||||
import { Minus, Sparkles } from 'lucide-react';
|
||||
import { Code2, Minus, Sparkles } from 'lucide-react';
|
||||
import { useEffect } from 'react';
|
||||
import type { ImageRadioOption } from '@/components/ImageRadioGroup';
|
||||
import ImageRadioGroup from '@/components/ImageRadioGroup';
|
||||
@@ -9,11 +9,13 @@ import type { Skin } from '@/utils/installation/types';
|
||||
const VIDEO_SKINS: ImageRadioOption<Skin>[] = [
|
||||
{ value: 'video', label: 'Default', image: <Sparkles size={32} /> },
|
||||
{ value: 'minimal-video', label: 'Minimal', image: <Minus size={32} /> },
|
||||
{ value: 'none', label: 'No Skin', image: <Code2 size={32} /> },
|
||||
];
|
||||
|
||||
const AUDIO_SKINS: ImageRadioOption<Skin>[] = [
|
||||
{ value: 'audio', label: 'Default', image: <Sparkles size={32} /> },
|
||||
{ value: 'minimal-audio', label: 'Minimal', image: <Minus size={32} /> },
|
||||
{ value: 'none', label: 'No Skin', image: <Code2 size={32} /> },
|
||||
];
|
||||
|
||||
export default function SkinPicker() {
|
||||
|
||||
Reference in New Issue
Block a user