Signed-off-by: mbrucedogs <mbrucedogs@gmail.com>
This commit is contained in:
parent
b696dbdabd
commit
50eba457f6
@ -73,18 +73,21 @@ const SelectSinger: React.FC<SelectSingerProps> = ({ isOpen, onClose, song }) =>
|
||||
breakpoints={[0, 0.5, 0.8]}
|
||||
initialBreakpoint={0.8}
|
||||
>
|
||||
<IonHeader>
|
||||
<IonToolbar>
|
||||
<IonTitle>Select Singer</IonTitle>
|
||||
<ActionButton
|
||||
onClick={onClose}
|
||||
variant={ActionButtonVariant.SECONDARY}
|
||||
size={ActionButtonSize.SMALL}
|
||||
icon={Icons.CLOSE}
|
||||
iconSlot={ActionButtonIconSlot.ICON_ONLY}
|
||||
/>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
<IonHeader>
|
||||
<IonToolbar>
|
||||
<IonTitle>Select Singer</IonTitle>
|
||||
<div slot="end">
|
||||
<ActionButton
|
||||
onClick={onClose}
|
||||
variant={ActionButtonVariant.SECONDARY}
|
||||
size={ActionButtonSize.SMALL}
|
||||
icon={Icons.CLOSE}
|
||||
iconSlot={ActionButtonIconSlot.ICON_ONLY}
|
||||
fill="clear"
|
||||
/>
|
||||
</div>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
<IonContent>
|
||||
{/* Song Information */}
|
||||
|
||||
@ -93,13 +93,16 @@ const SongInfo: React.FC<SongInfoProps> = ({ isOpen, onClose, song }) => {
|
||||
<IonHeader>
|
||||
<IonToolbar>
|
||||
<IonTitle>Song Info</IonTitle>
|
||||
<ActionButton
|
||||
onClick={onClose}
|
||||
variant={ActionButtonVariant.SECONDARY}
|
||||
size={ActionButtonSize.SMALL}
|
||||
icon={Icons.CLOSE}
|
||||
iconSlot={ActionButtonIconSlot.ICON_ONLY}
|
||||
/>
|
||||
<div slot="end">
|
||||
<ActionButton
|
||||
onClick={onClose}
|
||||
variant={ActionButtonVariant.SECONDARY}
|
||||
size={ActionButtonSize.SMALL}
|
||||
icon={Icons.CLOSE}
|
||||
iconSlot={ActionButtonIconSlot.ICON_ONLY}
|
||||
fill="clear"
|
||||
/>
|
||||
</div>
|
||||
</IonToolbar>
|
||||
</IonHeader>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user