mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: add style to SSR invoice paper template
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
import { x } from '@xstyled/emotion';
|
||||
import { SystemProps, x } from '@xstyled/emotion';
|
||||
|
||||
export const Text = ({ children }: { children: React.ReactNode }) => {
|
||||
return <x.div>{children}</x.div>;
|
||||
export interface TextProps extends SystemProps {
|
||||
children?: React.ReactNode;
|
||||
}
|
||||
|
||||
export const Text = ({ children, ...restProps }: TextProps) => {
|
||||
return <x.div {...restProps}>{children}</x.div>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user