Socket
Socket
Sign inDemoInstall

@vulpo-dev/brief

Package Overview
Dependencies
8
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @vulpo-dev/brief

Brief is a typography-focused email toolkit based on typesettings.io. It includes components such as `<Typography />`, `<Container />`, `<Row />`, `<Spacer />`, and `` to help you create visually appealing and effective emails.


Version published
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Brief

Brief is a typography-focused email toolkit based on typesettings.io. It includes components such as <Typography />, <Container />, <Row />, <Spacer />, and <Button /> to help you create visually appealing and effective emails.

Install Brief

To install Brief, run the following command in your terminal:

npm install @vulpo-dev/brief

Usage

To use Brief in your project, you will need to import the desired components from the @vulpo-dev/brief package. Here is an example of how you might use the <Typography />, <Container />, and <Row /> components:

import { Document } from "postler";
import { Typography, Container, Row } from "@vulpo-dev/brief";

export let Template = () => {
  return (
    <Document>
      <Typography />
      <Container>
        <Row>
          <!-- Your email content goes here -->
        </Row>
      </Container>
    </Document>
  );
};

The <Typography /> component provides global styles for typography in your email. The <Container /> component can be used to create a container element that is centered on the page and has a maximum width. The <Row /> component can be used to create a row of elements within the container.

You can also use the <Spacer /> component to add vertical spacing between elements, and the <Button /> component to create buttons in your email.

FAQs

Last updated on 18 Dec 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc