Files
Desktop/ts/components/AvatarUploadButton.dom.stories.tsx
2026-03-30 12:42:37 -07:00

26 lines
736 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { action } from '@storybook/addon-actions';
import type { Meta } from '@storybook/react';
import type { PropsType } from './AvatarUploadButton.dom.tsx';
import { AvatarUploadButton } from './AvatarUploadButton.dom.tsx';
const { i18n } = window.SignalContext;
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
className: overrideProps.className || '',
i18n,
onChange: action('onChange'),
});
export default {
title: 'Components/AvatarUploadButton',
} satisfies Meta<PropsType>;
export function Default(): React.JSX.Element {
return <AvatarUploadButton {...createProps()} />;
}