// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { action } from '@storybook/addon-actions'; import type { Meta } from '@storybook/react'; import type { Props } from './PanelRow'; import { PanelRow } from './PanelRow'; import { ConversationDetailsIcon, IconType } from './ConversationDetailsIcon'; export default { title: 'Components/Conversation/ConversationDetails/PanelRow', argTypes: {}, args: { icon: , label: '', info: '', right: '', actions: ( ), onClick: action('onClick'), }, } satisfies Meta; export function Basic(args: Props): JSX.Element { return ; } export function Simple(args: Props): JSX.Element { return ( ); } export function Full(args: Props): JSX.Element { return ( ); } export function Button(args: Props): JSX.Element { return ( ); }