You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
373 B
23 lines
373 B
import React from 'react'
|
|
|
|
import { ArrowLeft, ArrowRight } from 'features/Common'
|
|
|
|
const Story = {
|
|
component: ArrowLeft,
|
|
title: 'Arrows',
|
|
}
|
|
|
|
export default Story
|
|
|
|
const backgroundStyles = {
|
|
backgroundColor: '#333',
|
|
height: '200px',
|
|
padding: '20px',
|
|
}
|
|
|
|
export const Group = () => (
|
|
<div style={backgroundStyles}>
|
|
<ArrowLeft />
|
|
<ArrowRight />
|
|
</div>
|
|
)
|
|
|