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

Add StopAltHollow icon #33

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions src/iconList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const iconList = [
'RewindIcon',
'FastForwardIcon',
'StopAltIcon',
'StopAltHollowIcon',
'PlayHollowIcon',
'PlayAllHollowIcon',
'SideBySideIcon',
Expand Down
12 changes: 12 additions & 0 deletions src/icons/StopAltHollowIcon.stories.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { Meta, StoryObj } from '@storybook/react';

import { StopAltHollowIcon } from './StopAltHollowIcon';

const meta: Meta<typeof StopAltHollowIcon> = {
component: StopAltHollowIcon,
};

export default meta;
type Story = StoryObj<typeof StopAltHollowIcon>;

export const Default: Story = { args: { size: 100 } };
26 changes: 26 additions & 0 deletions src/icons/StopAltHollowIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import * as React from 'react';
import { IconProps } from '../types';

export const StopAltHollowIcon = /* @__PURE__ */ React.forwardRef<
SVGSVGElement,
IconProps
>(({ color = 'currentColor', size = 14, ...props }, forwardedRef) => {
return (
<svg
width={size}
height={size}
viewBox="0 0 14 14"
fill="none"
xmlns="http://www.w3.org/2000/svg"
ref={forwardedRef}
{...props}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M2.2 2.204v9.6h9.6v-9.6H2.2zm-.7-1.2a.5.5 0 00-.5.5v11a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-11a.5.5 0 00-.5-.5h-11z"
fill={color}
/>
</svg>
);
});
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export { PlayNextIcon } from './icons/PlayNextIcon';
export { RewindIcon } from './icons/RewindIcon';
export { FastForwardIcon } from './icons/FastForwardIcon';
export { StopAltIcon } from './icons/StopAltIcon';
export { StopAltHollowIcon } from './icons/StopAltHollowIcon';
export { PlayHollowIcon } from './icons/PlayHollowIcon';
export { PlayAllHollowIcon } from './icons/PlayAllHollowIcon';
export { SideBySideIcon } from './icons/SideBySideIcon';
Expand Down
Loading