mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat: optimize transactions locking.
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
.root {
|
||||
|
||||
|
||||
&_danger {
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
&__primary{
|
||||
|
||||
|
||||
.title{
|
||||
color: #1a3bd4;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
|
||||
}
|
||||
|
||||
.description {
|
||||
|
||||
}
|
||||
6
src/components/Typo/Paragraph.js
Normal file
6
src/components/Typo/Paragraph.js
Normal file
@@ -0,0 +1,6 @@
|
||||
import React from 'react';
|
||||
import clsx from 'classnames';
|
||||
|
||||
export function Paragraph({ className, children }) {
|
||||
return <p className={clsx('paragraph', className)}>{children}</p>;
|
||||
}
|
||||
2
src/components/Typo/index.js
Normal file
2
src/components/Typo/index.js
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
export * from './Paragraph';
|
||||
@@ -88,6 +88,7 @@ export * from './IntersectionObserver';
|
||||
export * from './SMSPreview';
|
||||
export * from './Contacts';
|
||||
export * from './Utils/Join';
|
||||
export * from './Typo';
|
||||
|
||||
const Hint = FieldHint;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user