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