Skip to content

Commit

Permalink
fix(divider): remarks from PR
Browse files Browse the repository at this point in the history
  • Loading branch information
iLya Raylyan authored and iLya Raylyan committed Feb 26, 2020
1 parent 0e4199c commit 5df2c6f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/divider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alfalab/core-components-divider",
"version": "0.0.1-alpha.0",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
Expand Down
3 changes: 1 addition & 2 deletions packages/divider/src/Component.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import React from 'react';

import { withDesign } from 'storybook-addon-designs';
import { withKnobs } from '@storybook/addon-knobs';

/**
Expand All @@ -16,7 +15,7 @@ import { Divider } from './Component';
export default {
title: 'Common|Divider',
component: Divider,
decorators: [withDesign, withKnobs],
decorators: [withKnobs],
};

export const Basic = () => (
Expand Down
2 changes: 1 addition & 1 deletion packages/divider/src/Component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import cn from 'classnames';
* Styles
*/

import styles from './Component.module.css';
import styles from './index.module.css';

/**
* Expo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

:root {
--divider-primary-color: var(--color-dark-indigo-15);
--divider-accent-color: var(--color-red-brand);
}

.component {
Expand Down

0 comments on commit 5df2c6f

Please sign in to comment.