aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/components/enum.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/react-docs/src/components/enum.tsx')
-rw-r--r--packages/react-docs/src/components/enum.tsx23
1 files changed, 0 insertions, 23 deletions
diff --git a/packages/react-docs/src/components/enum.tsx b/packages/react-docs/src/components/enum.tsx
deleted file mode 100644
index dee866790..000000000
--- a/packages/react-docs/src/components/enum.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import * as _ from 'lodash';
-import * as React from 'react';
-
-import { EnumValue } from '../types';
-
-export interface EnumProps {
- values: EnumValue[];
-}
-
-export const Enum = (props: EnumProps) => {
- const values = _.map(props.values, value => {
- const defaultValueIfAny = !_.isUndefined(value.defaultValue) ? ` = ${value.defaultValue}` : '';
- return `\n\t${value.name}${defaultValueIfAny},`;
- });
- return (
- <span>
- {`{`}
- {values}
- <br />
- {`}`}
- </span>
- );
-};