Skip to content

Commit

Permalink
add: create drag bridge icon
Browse files Browse the repository at this point in the history
  • Loading branch information
booi-dev committed May 11, 2024
1 parent f40af0c commit aa7707b
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 12 deletions.
43 changes: 43 additions & 0 deletions src/Icons/logo/DragBridgeIcon.tsx

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/Icons/logo/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export * from './AfterShootLogoIcon';
export * from './AftershootLogoWhite';
export * from './CaptureOneIcon';
export * from './DragBridgeIcon';
export * from './DragCaptureOneIcon';
export * from './DragLrIcon';
export * from './DragLrcIcon';
Expand Down
9 changes: 9 additions & 0 deletions src/new-svgs/draw-bridge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 0 additions & 12 deletions src/new-svgs/pause-bg.svg

This file was deleted.

27 changes: 27 additions & 0 deletions src/stories/DragBridgeIcon.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import type { Meta, StoryObj } from '@storybook/react'
import React from 'react'

import { DragBridgeIcon } from '../icons'

const meta: Meta<typeof DragBridgeIcon> = {
component: DragBridgeIcon,
title: 'logo/DragBridgeIcon',
decorators: [
(Story) => (
<div style={{ margin: '1rem' }}>
<Story />
</div>
),
],
}

export default meta
type Story = StoryObj<typeof DragBridgeIcon>

export const Default: Story = {}

export const Large: Story = {
args: {
size: 30,
},
}

0 comments on commit aa7707b

Please sign in to comment.