/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. * * OpenCRVS is also distributed under the terms of the Civil Registration * & Healthcare Disclaimer located at http://opencrvs.org/license. * * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. */ import { Meta } from '@storybook/react' import React from 'react' import { Icon } from '../Icon' import { DeclarationIconSmall } from '../icons/DeclarationIconSmall' import { LeftNavigation } from './LeftNavigation' import { NavigationGroup } from './NavigationGroup' import { NavigationItem } from './NavigationItem' export const SideNav = () => ( } label="In progress" /> } label="Ready for review" /> } label="Requires updates" /> } label="Sent for approval" /> } label="Ready to print" /> } label="Ready to issue" /> } label="Organisation" /> } label="Team" /> } label="Performance" /> ) SideNav.args = { applicationName: 'OpenCRVS', applicationVersion: '1.6.0', buildVersion: 'Development' } export default { title: 'Layout/Side Nav', component: LeftNavigation } as Meta