aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/wallet/placeholder.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-06-29 15:59:24 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-06-29 15:59:24 +0800
commitaedd51a61bcc9ecef660c1bea1641c0400f3ac45 (patch)
tree20177ccc8b1d933d543ea2cc5ce51e291f492d40 /packages/website/ts/components/wallet/placeholder.tsx
parent0b5a49c17dde87130a659e4101bd6e2f5666b9c7 (diff)
downloaddexon-0x-contracts-aedd51a61bcc9ecef660c1bea1641c0400f3ac45.tar.gz
dexon-0x-contracts-aedd51a61bcc9ecef660c1bea1641c0400f3ac45.tar.zst
dexon-0x-contracts-aedd51a61bcc9ecef660c1bea1641c0400f3ac45.zip
Refactor inline styles out of Wallet
Diffstat (limited to 'packages/website/ts/components/wallet/placeholder.tsx')
-rw-r--r--packages/website/ts/components/wallet/placeholder.tsx26
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/website/ts/components/wallet/placeholder.tsx b/packages/website/ts/components/wallet/placeholder.tsx
new file mode 100644
index 000000000..aca46014b
--- /dev/null
+++ b/packages/website/ts/components/wallet/placeholder.tsx
@@ -0,0 +1,26 @@
+import * as React from 'react';
+
+import { colors } from 'ts/style/colors';
+import { styled } from 'ts/style/theme';
+
+export interface PlaceHolderProps {
+ className?: string;
+ hideChildren: React.ReactNode;
+ fillColor: string;
+}
+
+const PlainPlaceHolder: React.StatelessComponent<PlaceHolderProps> = ({ className, hideChildren, children }) => {
+ const childrenVisibility = hideChildren ? 'hidden' : 'visible';
+ const childrenStyle: React.CSSProperties = { visibility: childrenVisibility };
+ return (
+ <div className={className}>
+ <div style={childrenStyle}>{children}</div>
+ </div>
+ );
+};
+
+export const PlaceHolder = styled(PlainPlaceHolder)`
+ background-color: ${props => (props.hideChildren ? props.fillColor : 'transparent')};
+ display: inline-block;
+ border-radius: 2px;
+`;