1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

circle-icon (#12650)

This commit is contained in:
Etienne Dusseault 2021-11-22 19:41:16 -06:00 committed by GitHub
parent 8ce0eff047
commit 49ae325d52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 52 additions and 4 deletions

View File

@ -0,0 +1,16 @@
import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
import CircleIcon from '.';
# Circle Icon
Add circle border to the image component
<Canvas>
<Story id="ui-components-ui-circle-icon-circle-icon-stories-js--default-story" />
</Canvas>
## Component API
<ArgsTable of={CircleIcon} />

View File

@ -3,9 +3,21 @@ import PropTypes from 'prop-types';
export default class CircleIcon extends PureComponent {
static propTypes = {
/**
* add size (px) for the image container
*/
size: PropTypes.string,
/**
* add css classname for the component based on the parent css
*/
circleClass: PropTypes.string,
/**
* image source path
*/
iconSource: PropTypes.string.isRequired,
/**
* add size (px) for the image
*/
iconSize: PropTypes.string,
};

View File

@ -1,17 +1,37 @@
import React from 'react';
import README from './README.mdx';
import CircleIcon from './circle-icon.component';
export default {
title: 'CircleIcon',
title: 'Components/UI/Circle Icon',
id: __filename,
component: CircleIcon,
parameters: {
docs: {
page: README,
},
},
argTypes: {
size: { control: 'text' },
circleClass: { control: 'text' },
iconSource: { control: 'text' },
iconSize: { control: 'text' },
},
};
export const basicCircleIcon = () => (
export const DefaultStory = (args) => (
<CircleIcon
border="1px solid"
borderColor="black"
background="white"
iconSize="42px"
iconSource="images/eth_logo.svg"
iconSize={args.iconSize}
iconSource={args.iconSource}
/>
);
DefaultStory.storyName = 'Default';
DefaultStory.args = {
iconSize: '42px',
iconSource: 'images/eth_logo.svg',
};