-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(FIJI-51927): [Icon] add icons: AudioLow, TodayCalendarIco
- Loading branch information
1 parent
26f297e
commit ff9a48f
Showing
9 changed files
with
78 additions
and
1 deletion.
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
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,26 @@ | ||
import * as React from 'react'; | ||
import { SVGProps, Ref, forwardRef, memo } from 'react'; | ||
|
||
const AudioLow = memo( | ||
forwardRef((props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => ( | ||
<svg | ||
viewBox="0 0 32 32" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={ref} | ||
{...props} | ||
> | ||
<path | ||
fill="#000" | ||
d="M18.479 4.534c.333.342.521.805.521 1.288v20.356C19 27.184 18.204 28 17.222 28c-.471 0-.924-.192-1.257-.534l-6.854-6H3.778C2.796 21.466 2 20.65 2 19.644v-7.288c0-1.006.796-1.822 1.778-1.822h5.333l6.854-6a1.746 1.746 0 0 1 2.514 0z" | ||
/> | ||
<path | ||
fill="#000" | ||
opacity={0.32} | ||
d="M27.398 7.869C29.081 10.224 30 13.044 30 16s-.919 5.776-2.602 8.131a1 1 0 0 1-1.627-1.163C27.213 20.95 28 18.535 28 16s-.787-4.95-2.229-6.968a1 1 0 0 1 1.627-1.163zm-3.554 3.715A8.963 8.963 0 0 1 25 16a8.953 8.953 0 0 1-1.171 4.441 1 1 0 1 1-1.738-.988A6.965 6.965 0 0 0 23 16a6.962 6.962 0 0 0-.898-3.433 1 1 0 0 1 1.742-.982z" | ||
/> | ||
</svg> | ||
)), | ||
); | ||
AudioLow.displayName = 'AudioLow'; | ||
AudioLow['iconName'] = 'audio-low'; | ||
export default AudioLow; |
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,18 @@ | ||
import * as React from 'react'; | ||
import { SVGProps, Ref, forwardRef, memo } from 'react'; | ||
|
||
const TodayCalendarIco = memo( | ||
forwardRef((props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => ( | ||
<svg | ||
viewBox="0 0 32 32" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={ref} | ||
{...props} | ||
> | ||
<path d="M7.056 2C4.278 2 2 4.277 2 7.056v17.889c0 2.778 2.277 5.056 5.056 5.056h17.889c2.778 0 5.056-2.277 5.056-5.056V7.056C30.001 4.278 27.724 2 24.945 2H7.056zm0 2.333h17.889a2.706 2.706 0 0 1 2.722 2.722v1.167H4.334V7.055a2.706 2.706 0 0 1 2.722-2.722zm-2.723 6.223h23.333v14.389a2.706 2.706 0 0 1-2.722 2.722H7.055a2.706 2.706 0 0 1-2.722-2.722V10.556zm17.532 3.098a1.168 1.168 0 0 0-.899.398l-6.18 6.863-3.018-3.018a1.166 1.166 0 1 0-1.651 1.65l3.889 3.889a1.165 1.165 0 0 0 1.693-.044l7-7.778a1.166 1.166 0 0 0-.836-1.96h.001z" /> | ||
</svg> | ||
)), | ||
); | ||
TodayCalendarIco.displayName = 'TodayCalendarIco'; | ||
TodayCalendarIco['iconName'] = 'today-calendar-ico'; | ||
export default TodayCalendarIco; |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"latestCommitSHA": "6a36ed5b3b7cb5e2f22b79d4bd7c47442c5947f5" | ||
"latestCommitSHA": "ad1c45054ea510ff1dc9509eef1170720b0c40f6" | ||
} |