aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/section_header.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/components/section_header.tsx')
-rw-r--r--packages/instant/src/components/section_header.tsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/instant/src/components/section_header.tsx b/packages/instant/src/components/section_header.tsx
deleted file mode 100644
index 2185b67ba..000000000
--- a/packages/instant/src/components/section_header.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import * as React from 'react';
-
-import { ColorOption } from '../style/theme';
-
-import { Text } from './ui/text';
-
-export interface SectionHeaderProps {}
-export const SectionHeader: React.StatelessComponent<SectionHeaderProps> = props => {
- return (
- <Text
- letterSpacing="1px"
- fontColor={ColorOption.primaryColor}
- fontWeight={600}
- textTransform="uppercase"
- fontSize="12px"
- >
- {props.children}
- </Text>
- );
-};
-SectionHeader.displayName = 'SectionHeader';