Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@churchcenter/doxy

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@churchcenter/doxy

Cross-platform Church Center Components

  • 0.0.7-rc.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
3
Weekly downloads
 
Created
Source

@churchcenter/doxy

Cross-platform Church Center Components

Usage

Installation

yarn add @churchcenter/doxy

Colors

import { colors } from "@churchcenter/doxy";

colors.topaz;
colors.turquoise;
colors.emerald;
colors.ruby;
colors.sapphire;
colors.gray900;
colors.gray800;
colors.gray700;
colors.gray600;
colors.gray500;
colors.gray400;
colors.gray300;
colors.gray200;
colors.gray100;
colors.gray50;
colors.gray25;

Space

import { View } from "react-native";
import { space } from "@churchcenter/doxy";

function App() {
  return (
    <View
      style={{
        paddingTop: space(1),
        paddingRight: space(1),
        paddingBottom: space(2),
        paddingLeft: space(1)
      }}
    >
      Stuff
    </View>
  );
}

Typography

import { View } from "react-native";
import {
  TextLink,
  Heading,
  PlainText,
  SecondaryText,
  TertiaryText,
  FootNote
} from "@churchcenter/doxy";

function App() {
  return (
    <View>
      <TextLink>A link</TextLink>
      <Heading level={1}>Heading 1</Heading>
      <Heading level={2}>Heading 2</Heading>
      <Heading level={3}>Heading 3</Heading>
      <Heading level={4}>Heading 4</Heading>
      <PlainText>Some text...</PlainText>
      <SecondaryText>Some more text...</SecondaryText>
      <TertiaryText>Even more text...<TertiaryText>
      <FootNote>Footnote</FootNote>
    </View>
  )
}

FAQs

Package last updated on 08 Apr 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc