0.3.2 • Published 10 months ago

@papyrus-ui/styles v0.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

@papyrus-ui/base

Global styles, themes and style utilities for implementing components based on the Papyrus UI design system.

Getting Started:

  1. Create Utility Classes with atoms()

    Define utility classes using the atoms() function provided by @papyrus-ui/base.

    // card.css.ts
    
    import { atoms } from '@papyrus-ui/styles';
    
    export const card = atoms({
      p: 4,
      rounded: 'md',
      shadow: 'md',
      bg: 'white',
    });

    Atoms can be generated at runtime as well. However, defining them in .css.ts files ensures that all calculations are performed during the build phase.

  2. Create a Card Component

    Utilize the defined utility class (card) to create a custom Card component:

    import React from 'react';
    import * as S from './card.css.ts';
    
    const Card: React.FC<{ title: string; content: string }> = ({ title, content }) => {
      return (
        <div className={S.card}>
          <h2>{title}</h2>
          <p>{content}</p>
        </div>
      );
    };
    
    export default Card;

Contributing

We welcome contributions to enhance Papyrus UI. To contribute, fork the repository, make your changes, and submit a pull request. If you encounter issues or have suggestions, please open an issue on GitHub.

0.3.0

10 months ago

0.3.2

10 months ago

0.3.1

10 months ago

0.2.0

11 months ago

0.1.4

12 months ago

0.1.3

12 months ago

0.1.1

12 months ago

0.1.0

12 months ago