-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'github-workflow' into add-Line-icon
- Loading branch information
Showing
10 changed files
with
298 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Slack Notification on PR Merge | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- 'github-workflow' | ||
|
||
jobs: | ||
notify_on_merge: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Extract version from package.json | ||
id: extract_version | ||
run: echo ::set-output name=version::$(jq -r '.version' package.json) | ||
|
||
- name: Send message to Slack | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
run: | | ||
curl -X POST -H 'Content-type: application/json' --data '{"text": "Version: ${{ steps.extract_version.outputs.version }}\nPR ID: ${{ github.event.pull_request.number }}"}' $SLACK_WEBHOOK_URL |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// GENERATED BY /script/build.js | ||
// DO NOT EDIT MANUALLY | ||
|
||
import * as React from "react"; | ||
import { PictogramIconProps } from "../../types"; | ||
import { SVGPictogramWrapper } from "../../styles"; | ||
import { PictogramsNames } from "../../iconsNames"; | ||
|
||
export const BoxWithLeftArrow = React.forwardRef<SVGSVGElement, PictogramIconProps>( | ||
({ width = 64, height = 64, ...props }, forwardedRef) => { | ||
return ( | ||
<SVGPictogramWrapper icon={PictogramsNames.BoxWithLeftArrow} {...props}> | ||
<svg | ||
width={width} | ||
height={height} | ||
ref={forwardedRef} | ||
viewBox="0 0 64 64" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<defs></defs> | ||
<rect x="3" y="29" width="21" height="5" rx="2.5" fill="white" /> | ||
<rect x="18" y="22" width="13.3093" height="4" rx="2" transform="rotate(45 18 22)" fill="white" /> | ||
<rect | ||
width="13.6658" | ||
height="4" | ||
rx="2" | ||
transform="matrix(-0.707107 0.707107 0.707107 0.707107 24.6631 28.748)" | ||
fill="white" | ||
/> | ||
<rect x="14" y="4" width="42" height="56" rx="4.75" className="base" /> | ||
<g className="mix-blend-multiply"> | ||
<rect x="3" y="29" width="21" height="5" rx="2.5" className="primary" /> | ||
<rect | ||
x="18" | ||
y="22" | ||
width="13.3093" | ||
height="4" | ||
rx="2" | ||
transform="rotate(45 18 22)" | ||
className="primary" | ||
/> | ||
<rect | ||
width="13.6658" | ||
height="4" | ||
rx="2" | ||
transform="matrix(-0.707107 0.707107 0.707107 0.707107 24.6631 28.748)" | ||
className="primary" | ||
/> | ||
</g> | ||
</svg> | ||
</SVGPictogramWrapper> | ||
); | ||
} | ||
); | ||
|
||
BoxWithLeftArrow.displayName = "BoxWithLeftArrow"; | ||
|
||
export default BoxWithLeftArrow; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// GENERATED BY /script/build.js | ||
// DO NOT EDIT MANUALLY | ||
|
||
import * as React from "react"; | ||
import { PictogramIconProps } from "../../types"; | ||
import { SVGPictogramWrapper } from "../../styles"; | ||
import { PictogramsNames } from "../../iconsNames"; | ||
|
||
export const BoxWithRightArrow = React.forwardRef<SVGSVGElement, PictogramIconProps>( | ||
({ width = 64, height = 64, ...props }, forwardedRef) => { | ||
return ( | ||
<SVGPictogramWrapper icon={PictogramsNames.BoxWithRightArrow} {...props}> | ||
<svg | ||
width={width} | ||
height={height} | ||
ref={forwardedRef} | ||
viewBox="0 0 64 64" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<defs></defs> | ||
<rect | ||
x="60.4916" | ||
y="34.2393" | ||
width="21" | ||
height="5" | ||
rx="2.5" | ||
transform="rotate(-180 60.4916 34.2393)" | ||
fill="white" | ||
/> | ||
<rect | ||
x="45.4916" | ||
y="41.2393" | ||
width="13.3093" | ||
height="4" | ||
rx="2" | ||
transform="rotate(-135 45.4916 41.2393)" | ||
fill="white" | ||
/> | ||
<rect | ||
width="13.6658" | ||
height="4" | ||
rx="2" | ||
transform="matrix(0.707107 -0.707107 -0.707107 -0.707107 38.8284 34.4912)" | ||
fill="white" | ||
/> | ||
<rect x="8" y="4" width="42" height="56" rx="4.75" className="base" /> | ||
<g className="mix-blend-multiply"> | ||
<rect | ||
x="60.4916" | ||
y="34.2393" | ||
width="21" | ||
height="5" | ||
rx="2.5" | ||
transform="rotate(-180 60.4916 34.2393)" | ||
className="primary" | ||
/> | ||
<rect | ||
x="45.4916" | ||
y="41.2393" | ||
width="13.3093" | ||
height="4" | ||
rx="2" | ||
transform="rotate(-135 45.4916 41.2393)" | ||
className="primary" | ||
/> | ||
<rect | ||
width="13.6658" | ||
height="4" | ||
rx="2" | ||
transform="matrix(0.707107 -0.707107 -0.707107 -0.707107 38.8284 34.4912)" | ||
className="primary" | ||
/> | ||
</g> | ||
</svg> | ||
</SVGPictogramWrapper> | ||
); | ||
} | ||
); | ||
|
||
BoxWithRightArrow.displayName = "BoxWithRightArrow"; | ||
|
||
export default BoxWithRightArrow; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters