Skip to content

Commit

Permalink
Redesign filters on report
Browse files Browse the repository at this point in the history
  • Loading branch information
kattylucy committed Sep 26, 2024
1 parent 4afb124 commit af7aac4
Show file tree
Hide file tree
Showing 9 changed files with 538 additions and 342 deletions.
8 changes: 4 additions & 4 deletions centrifuge-app/src/components/IssuerSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ type IssuerSectionProps = {
}

const reportLinks = [
{ label: 'Balance sheet', href: '/balance-sheet', icon: <IconBalanceSheet /> },
{ label: 'Profit & loss', href: '/profit-and-loss', icon: <IconProfitAndLoss /> },
{ label: 'Cashflow statement', href: '/cash-flow-statement', icon: <IconCashflow /> },
{ label: 'Balance sheet', href: '/balance-sheet', icon: <IconBalanceSheet color="backgroundPrimary" /> },
{ label: 'Profit & loss', href: '/profit-and-loss', icon: <IconProfitAndLoss color="backgroundPrimary" /> },
{ label: 'Cashflow statement', href: '/cash-flow-statement', icon: <IconCashflow color="backgroundPrimary" /> },
]

const StyledRouterTextLink = styled(RouterTextLink)`
Expand Down Expand Up @@ -78,7 +78,7 @@ export function ReportDetails({ metadata }: IssuerSectionProps) {
{link.label}
</StyledRouterTextLink>
</Box>
<IconChevronRight color="white" />
<IconChevronRight color="backgroundPrimary" />
</Box>
))}
</Box>
Expand Down
Loading

0 comments on commit af7aac4

Please sign in to comment.