UNPKG

@aegov/design-system-react

Version:

A design system for the Government of the United Arab Emirates. Extending the original design system released as @aegov/design-system, this is the package specefically created for the ReactJs enviornment.

23 lines (21 loc) 418 B
import React from 'react'; import { Theme } from '@radix-ui/themes'; import '../src/styles/tailwind.css'; export const parameters = { actions: { argTypesRegex: '^on[A-Z].*' }, controls: { matchers: { color: /(background|color)$/i, date: /Date$/, }, }, }; export const decorators = [ (Story) => ( <Theme> <div className="p-4"> <Story /> </div> </Theme> ), ];