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)

23 lines (22 loc) 549 B
/** * @file index.tsx * * @fileoverview Aligns content to the center. */ import React from 'react'; export interface AlignedCenterProps { /** * The content should flow veritcally or horizontally. * * @default "column" */ flow?: 'row' | 'column'; /** * The content to be displayed inside the chip element. * * @default "null" */ children: React.ReactNode | string; } export declare const AlignedCenter: ({ flow, children }: AlignedCenterProps) => JSX.Element; export default AlignedCenter;