UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

21 lines (20 loc) 657 B
/** * @file index.tsx * * @fileoverview Shows content inside a landing page row. */ import React from 'react'; import { ColorProps, SpaceProps } from 'styled-system'; declare type BaseSimpleTextRowProps = SpaceProps & ColorProps; export declare const StyledSimpleTextText: import("styled-components").StyledComponent<"div", any, any, never>; export interface SimpleTextProps extends BaseSimpleTextRowProps { /** * The content to show. */ children: React.ReactNode; } /** * This component provides a simple text. */ export declare const SimpleText: ({ children, ...props }: SimpleTextProps) => JSX.Element; export default SimpleText;