mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import clsx from 'classnames';
|
|
|
|
export function Paragraph({ className, children }) {
|
|
return <p className={clsx('paragraph', className)}>{children}</p>;
|
|
} |