aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website')
-rw-r--r--packages/website/ts/@next/components/separator.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/website/ts/@next/components/separator.tsx b/packages/website/ts/@next/components/separator.tsx
new file mode 100644
index 000000000..1377bf706
--- /dev/null
+++ b/packages/website/ts/@next/components/separator.tsx
@@ -0,0 +1,8 @@
+import * as React from 'react';
+import styled from 'styled-components';
+
+export const Separator = styled.hr`
+ background: #EAEAEA;
+ height: 1px;
+ border: 0;
+`;