mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
6 lines
182 B
JavaScript
6 lines
182 B
JavaScript
import React from 'react';
|
|
import clsx from 'classnames';
|
|
|
|
export function Paragraph({ className, children }) {
|
|
return <p className={clsx('paragraph', className)}>{children}</p>;
|
|
} |