mirror of
https://github.com/owncast/owncast.git
synced 2025-01-30 20:13:53 +03:00
Added icons to buttons
This commit is contained in:
parent
3c72114d5e
commit
abc210477f
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
import { useRecoilValue } from 'recoil';
|
||||
import { Layout, Button, Tabs } from 'antd';
|
||||
import { NotificationFilled, HeartFilled } from '@ant-design/icons';
|
||||
import {
|
||||
chatVisibilityAtom,
|
||||
clientConfigStateAtom,
|
||||
|
@ -77,13 +78,13 @@ export default function ContentComponent() {
|
|||
<div className={s.buttonsLogoTitleSection}>
|
||||
<ActionButtonRow>
|
||||
{externalActionButtons}
|
||||
<Button>Follow</Button>
|
||||
<Button icon={<HeartFilled />}>Follow</Button>
|
||||
<NotifyReminderPopup
|
||||
visible
|
||||
notificationClicked={() => {}}
|
||||
notificationClosed={() => {}}
|
||||
>
|
||||
<Button>Notify</Button>
|
||||
<Button icon={<NotificationFilled />}>Notify</Button>
|
||||
</NotifyReminderPopup>
|
||||
</ActionButtonRow>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue