// Copyright 2024, Command Line Inc. // SPDX-License-Identifier: Apache-2.0 import type { Meta, StoryObj } from "@storybook/react"; import { EmojiPalette } from "./emojipalette"; const meta: Meta = { title: "Elements/EmojiPalette", component: EmojiPalette, args: { className: "custom-emoji-palette-class", }, argTypes: { className: { description: "Custom class for emoji palette styling", }, }, }; export default meta; type Story = StoryObj; export const DefaultEmojiPalette: Story = { render: (args) => { return (
); }, args: { className: "custom-emoji-palette-class", }, };