Update
This commit is contained in:
@@ -28,7 +28,7 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
|
||||
|
||||
return (
|
||||
<div className={cn('flex items-center justify-center gap-2', className)}>
|
||||
<Button onClick={togglePlayPause} variant="default" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
|
||||
<Button onClick={togglePlayPause} variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
|
||||
{videoIsPlaying ? <Square className="h-8 w-8" /> : <Play className="h-8 w-8" />}
|
||||
</Button>
|
||||
|
||||
@@ -46,7 +46,7 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
|
||||
|
||||
<Button
|
||||
id="edit"
|
||||
variant={isEditActive ? 'default' : 'default'}
|
||||
variant={isEditActive ? 'outline' : 'outline'}
|
||||
size="icon"
|
||||
className="h-12 w-12 rounded-full border shadow-sm"
|
||||
onClick={onEditClick}
|
||||
@@ -54,7 +54,7 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
|
||||
<Edit3 className={`h-8 w-8 ${isEditActive ? 'text-white' : ''}`} />
|
||||
</Button>
|
||||
|
||||
<Button variant="default" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
|
||||
<Button variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
|
||||
<Download className="h-8 w-8" />
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
@@ -19,6 +19,8 @@
|
||||
"duration": 6,
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"asset_width": 720,
|
||||
"asset_height": 720,
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"rotation": 0
|
||||
@@ -36,6 +38,8 @@
|
||||
"duration": 6,
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"asset_width": 720,
|
||||
"asset_height": 1280,
|
||||
"width": 720,
|
||||
"height": 1280,
|
||||
"rotation": 0
|
||||
|
||||
Reference in New Issue
Block a user