-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ajout du tutoriel video pour le téléversement (#3413)
- Loading branch information
1 parent
35dffdd
commit c16fee0
Showing
5 changed files
with
84 additions
and
45 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
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,15 @@ | ||
import { Icon } from "@chakra-ui/react"; | ||
import React from "react"; | ||
|
||
export default function DownloadSimple(props) { | ||
return ( | ||
<Icon width="12px" height="14px" viewBox="0 0 12 14" {...props}> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M0 12.6665H12V13.9998H0V12.6665ZM6.66667 5.99984H11.3333L6 11.3332L0.666667 5.99984H5.33333V0.666504H6.66667V5.99984Z" | ||
fill="currentColor" | ||
/> | ||
</Icon> | ||
); | ||
} |
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,15 @@ | ||
import { Icon } from "@chakra-ui/react"; | ||
import React from "react"; | ||
|
||
export default function Eye(props) { | ||
return ( | ||
<Icon width="14px" height="14px" viewBox="0 0 16 16" {...props}> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M7.99978 2C11.5944 2 14.5851 4.58667 15.2124 8C14.5858 11.4133 11.5944 14 7.99978 14C4.40511 14 1.41444 11.4133 0.787109 8C1.41378 4.58667 4.40511 2 7.99978 2ZM7.99978 4.66667C6.15883 4.66667 4.66644 6.15905 4.66644 8C4.66644 9.84095 6.15883 11.3333 7.99978 11.3333C9.84073 11.3333 11.3331 9.84095 11.3331 8C11.3331 6.15905 9.84073 4.66667 7.99978 4.66667ZM7.99978 6C9.10435 6 9.99978 6.89543 9.99978 8C9.99978 9.10457 9.10435 10 7.99978 10C6.89521 10 5.99978 9.10457 5.99978 8C5.99978 6.89543 6.89521 6 7.99978 6Z" | ||
fill="currentColor" | ||
/> | ||
</Icon> | ||
); | ||
} |
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,15 @@ | ||
import { Icon } from "@chakra-ui/react"; | ||
import React from "react"; | ||
|
||
export default function Video(props) { | ||
return ( | ||
<Icon height="14px" viewBox="0 0 14 13" {...props}> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M13.0002 0C13.3684 0 13.6668 0.298477 13.6668 0.666667V10C13.6668 10.3682 13.3684 10.6667 13.0002 10.6667H3.3035L0.333496 13V0.666667C0.333496 0.298477 0.631973 0 1.00016 0H13.0002ZM8.3335 3.33333H3.66683V7.33333H8.3335V5.83333L10.3335 7.33333V3.33333L8.3335 4.83333V3.33333Z" | ||
fill="currentColor" | ||
/> | ||
</Icon> | ||
); | ||
} |