añadido crd para Song y transladada la logica de /gallery a un controller
This commit is contained in:
11
resources/js/Components/Icons/AddIcon.tsx
Normal file
11
resources/js/Components/Icons/AddIcon.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
export default function AddIcon() {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 448 512"
|
||||
height="1.5em"
|
||||
>
|
||||
<path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
12
resources/js/Components/Icons/AddStackIcon.tsx
Normal file
12
resources/js/Components/Icons/AddStackIcon.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
export default function AddStackIcon() {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
height="1.5em"
|
||||
fill="currentColor"
|
||||
viewBox="0 0 512 512"
|
||||
>
|
||||
<path d="M 432 2 Q 414 4 412 22 L 412 58 L 412 58 L 376 58 L 376 58 Q 358 60 356 78 Q 358 96 376 98 L 412 98 L 412 98 L 412 134 L 412 134 Q 414 152 432 154 Q 450 152 452 134 L 452 98 L 452 98 L 488 98 L 488 98 Q 506 96 508 78 Q 506 60 488 58 L 452 58 L 452 58 L 452 22 L 452 22 Q 450 4 432 2 L 432 2 Z M 256 126 Q 243 126 231 131 L 22 221 L 22 221 Q 1 231 0 254 Q 1 277 22 287 L 231 377 L 231 377 Q 243 382 256 382 Q 269 382 281 377 L 490 287 L 490 287 Q 511 277 512 254 Q 511 231 490 221 L 281 131 L 281 131 Q 269 126 256 126 L 256 126 Z M 250 175 Q 253 174 256 174 Q 259 174 262 175 L 446 254 L 446 254 L 262 333 L 262 333 Q 259 334 256 334 Q 253 334 250 333 L 66 254 L 66 254 L 250 175 L 250 175 Z M 53 335 L 22 349 L 53 335 L 22 349 Q 1 359 0 382 Q 1 405 22 415 L 231 505 L 231 505 Q 243 510 256 510 Q 269 510 281 505 L 490 415 L 490 415 Q 511 405 512 382 Q 511 359 490 349 L 459 335 L 459 335 L 398 362 L 398 362 L 446 382 L 446 382 L 262 461 L 262 461 Q 259 462 256 462 Q 253 462 250 461 L 66 382 L 66 382 L 114 362 L 114 362 L 53 335 L 53 335 Z" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
15
resources/js/Components/Icons/PauseIcon.tsx
Normal file
15
resources/js/Components/Icons/PauseIcon.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
const PauseIcon = () => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 512 512"
|
||||
width="24"
|
||||
height="24"
|
||||
fill="currentColor"
|
||||
>
|
||||
<path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM224 192l0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-128c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0l0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-128c0-17.7 14.3-32 32-32s32 14.3 32 32z" />
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
|
||||
export default PauseIcon;
|
||||
15
resources/js/Components/Icons/PlayIcon.tsx
Normal file
15
resources/js/Components/Icons/PlayIcon.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
const PlayIcon = () => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 512 512"
|
||||
width="24"
|
||||
height="24"
|
||||
fill="currentColor"
|
||||
>
|
||||
<path d="M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c-7.6 4.2-12.3 12.3-12.3 20.9l0 176c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88c-7.4-4.5-16.7-4.7-24.3-.5z" />
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
|
||||
export default PlayIcon;
|
||||
Reference in New Issue
Block a user