Skip to content

Commit

Permalink
Segment component stories minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
g-stamatis committed Dec 21, 2021
1 parent 84eac30 commit 5f8c7ef
Showing 1 changed file with 20 additions and 21 deletions.
41 changes: 20 additions & 21 deletions src/customizations/components/theme/Segment/Segment.stories.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
import React from 'react'
import { Segment } from 'semantic-ui-react'
import React from 'react';
import { Segment } from 'semantic-ui-react';

export default {
title:'Components/Segment',
component: Segment,
argTypes:{}
}
title: 'Components/Segment',
component: Segment,
argTypes: {},
};

const Template = (args) => <Segment {...args}></Segment>;

export const Default = Template.bind({});
Default.args = {
children:["Content"],
}
children: ['Content'],
};

export const Playground = Template.bind({});
Playground.args = {
children:["Content"],
basic:false,
circular:false,
color:"",
compact:false,
disabled:false,
loading:false,
raised:false,
secondary:false,
stacked:false,
tertiary:false,
vertical:false,
}
children: ['Content'],
basic: false,
circular: false,
compact: false,
disabled: false,
loading: false,
raised: false,
secondary: false,
stacked: false,
tertiary: false,
vertical: false,
};

0 comments on commit 5f8c7ef

Please sign in to comment.