Skip to content

Commit

Permalink
Added new icon
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjeevLakhwani committed Nov 6, 2024
1 parent 6c47d5a commit 292e36b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/js/components/Overview/PublicOverview.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useEffect, useCallback } from 'react';
import { Row, Col, FloatButton, Card, Skeleton } from 'antd';
import { PlusOutlined } from '@ant-design/icons';
import { useCallback, useEffect, useState } from 'react';
import { Card, Col, FloatButton, Row, Skeleton } from 'antd';
import { AppstoreAddOutlined } from '@ant-design/icons';

import { convertSequenceAndDisplayData, saveValue } from '@/utils/localStorage';
import type { Sections } from '@/types/data';
Expand Down Expand Up @@ -83,7 +83,7 @@ const PublicOverview = () => {
<ManageChartsDrawer onManageDrawerClose={onManageChartsClose} manageDrawerVisible={drawerVisible} />
<FloatButton
type="primary"
icon={<PlusOutlined />}
icon={<AppstoreAddOutlined rotate={270} />}
tooltip="Manage Charts"
style={MANAGE_CHARTS_BUTTON_STYLE}
onClick={onManageChartsOpen}
Expand Down

0 comments on commit 292e36b

Please sign in to comment.