jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
21 lines (20 loc) • 657 B
TypeScript
/**
* @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;