UNPKG

@violetprotocol/nudge-components

Version:

Components for Nudge's websites and applications.

28 lines (27 loc) 514 B
import { jsx as _jsx } from "react/jsx-runtime"; import { Logo } from "./Logo"; const meta = { component: Logo, }; export default meta; const argTypes = { height: { control: { type: "number" }, }, width: { control: { type: "number" }, }, }; export const Primary = { render: (args) => _jsx(Logo, { ...args }), args: { width: 298, height: 93, }, argTypes, parameters: { themes: { themeOverride: "dark", }, }, };