Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove props from Icon #315

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions src/components/Icon.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,21 +79,3 @@ export const NoLabels = () => (
))}
</List>
);

export const Inline = () => (
<>
this is an inline <Icon icon="facehappy" aria-label="Happy face" /> icon (default)
</>
);

export const Block = () => (
<>
this is a block <Icon icon="facehappy" aria-label="Happy face" block /> icon
</>
);

export const CustomColor = () => (
<>
this is a colorful <Icon icon="facehappy" aria-label="Pink happy face" color="pink" /> icon
</>
);
20 changes: 4 additions & 16 deletions src/components/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@ import React, { FunctionComponent } from 'react';
import { styled } from '@storybook/theming';
import { icons } from './shared/icons';

const Svg = styled('svg', { shouldForwardProp: (prop) => !['block', 'color'].includes(prop) })<
Partial<Props>
>`
display: ${(props) => (props.block ? 'block' : 'inline-block')};
const Svg = styled.svg`
domyen marked this conversation as resolved.
Show resolved Hide resolved
vertical-align: middle;

shape-rendering: inherit;
transform: translate3d(0, 0, 0);

path {
fill: ${(props) => props.color};
fill: currentColor;
}
`;

Expand All @@ -23,23 +20,14 @@ const Svg = styled('svg', { shouldForwardProp: (prop) => !['block', 'color'].inc
* - *decorative only*: for example, it illustrates a label next to it. We must ensure that it is ignored by screen readers, by setting `aria-hidden` attribute (ex: `<Icon icon="check" aria-hidden />`)
* - *non-decorative*: it means that it delivers information. For example, an icon as only child in a button. The meaning can be obvious visually, but it must have a proper text alternative via `aria-label` for screen readers. (ex: `<Icon icon="print" aria-label="Print this document" />`)
*/
export const Icon: FunctionComponent<Props> = ({
icon,
block = false,
color = 'currentColor',
...props
}: Props) => {
export const Icon: FunctionComponent<Props> = ({ icon, ...props }: Props) => {
return (
<Svg viewBox="0 0 1024 1024" width="20px" height="20px" block={block} color={color} {...props}>
<Svg viewBox="0 0 1024 1024" width="20px" height="20px" {...props}>
<path d={icons[icon]} />
</Svg>
);
};

interface Props {
icon: keyof typeof icons;
/** Pass this prop to add display: block to the Icon */
block?: boolean;
/** Set a custom color for the Icon */
color?: string;
}
6 changes: 5 additions & 1 deletion src/components/marketing/Breadcrumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ const BreadcrumbInner = styled.div`
}
`;

const BreadcrumbIcon = styled(Icon)`
color: ${color.mediumdark};
`;

export const Breadcrumb: FunctionComponent<Props> = ({
children,
linkWrapper,
...props
}: Props) => (
<BreadcrumbInner>
<BreadcrumbLink tertiary LinkWrapper={linkWrapper} {...props}>
<Icon icon="arrowleft" color={color.mediumdark} />
<BreadcrumbIcon icon="arrowleft" />
{children}
</BreadcrumbLink>
</BreadcrumbInner>
Expand Down