forked from VirtusLab-Open-Source/strapi-plugin-comments
-
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.
feat: comments custom field [CU-2tn2923] (VirtusLab-Open-Source#157)
* feat: comments custom field * chore: code coverage * fix: pr feedback and tests * chore: tests rename * fix: failing test * chore: version update * feat: custom field icon * fix: failing tests * fix: typescript build failing * fix: add env and change path (VirtusLab-Open-Source#158) Co-authored-by: Mateusz Ziarko <[email protected]> Co-authored-by: Maksymilian Pamuła <[email protected]>
- Loading branch information
1 parent
3b9eee2
commit aaac8a0
Showing
39 changed files
with
2,157 additions
and
73 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,29 @@ | ||
import React from "react"; | ||
|
||
export const CustomFieldIcon = () => ( | ||
<svg | ||
width="2em" | ||
height="1.5em" | ||
viewBox="0 0 50 36" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<rect | ||
x="0.75" | ||
y="0.75" | ||
width="48.5" | ||
height="34.5" | ||
rx="2.25" | ||
fill="#FDF4DC" | ||
stroke="#FAE7B9" | ||
stroke-width="1.5" | ||
/> | ||
<path | ||
d="M34 10H16V23.6098H21.7073L25.2195 28L28.2927 23.6098H34V10Z" | ||
stroke="#D9822F" | ||
stroke-width="1.5" | ||
/> | ||
<path d="M21.2686 15.2676H28.2929" stroke="#D9822F" stroke-width="1.5" /> | ||
<path d="M21.2686 18.3418H28.2929" stroke="#D9822F" stroke-width="1.5" /> | ||
</svg> | ||
); |
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,2 @@ | ||
export * from "./icon"; | ||
export * from "./input"; |
Oops, something went wrong.