From 3ec5e02385ff103bb474eb1b3d70518fe8d7e69e Mon Sep 17 00:00:00 2001 From: paultranvan Date: Thu, 14 Jan 2021 16:11:01 +0100 Subject: [PATCH] feat: Add bill icon --- assets/icons/ui/bill.svg | 3 +++ react/Icon/Readme.md | 4 +++- react/Icons/Bill.jsx | 15 +++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 assets/icons/ui/bill.svg create mode 100644 react/Icons/Bill.jsx diff --git a/assets/icons/ui/bill.svg b/assets/icons/ui/bill.svg new file mode 100644 index 0000000000..18ea66b44a --- /dev/null +++ b/assets/icons/ui/bill.svg @@ -0,0 +1,3 @@ + + + diff --git a/react/Icon/Readme.md b/react/Icon/Readme.md index e8595d76eb..cac3bd3671 100644 --- a/react/Icon/Readme.md +++ b/react/Icon/Readme.md @@ -34,7 +34,7 @@ import Typography from 'cozy-ui/transpiled/react/Typography'; const colors = ['#297EF2', '#08b442', '#B449E7', '#F52D2D', '#FF962F'] let i = 0 -const availableIcons = ['album-add','album-remove','album','answer','apple','archive','attachment','attention','bank','banking-add','banking','bell','bottom','browser-brave','browser-chrome','browser-duckduckgo','browser-edge','browser-firefox','browser-ie','browser-opera','browser-safari','burger','calendar','camera','car','carbonCopy','categories','certified','check-circle','check-list','check-square','check','circle-filled','clock','cloud-happy','cloud','collect','comment','company','compass','connector','contract','contrast','cozy-laugh','cozy-text','credit-card-add','credit-card','credit','crop','cross-circle','cross-medium','cross-small','cross','cube','dash','dashboard','data-control','debit','devices','dots','down','download','drawing-arrow-up','dropdown-close','dropdown-open','dropdown','dropup','email-notification','email','eu','euro','exchange','eye-closed','eye','file-add','file-duotone','file-new','file-none','file-outline','file','filter','fingerprint','flag-outlined','flag','flash-auto','flashlight','folder-add','folder','forbidden','from-user','gear','globe','graph-circle','grid','group-list','groups','heart','help','history','home','hourglass','image','info-outlined','info','key','laptop','left','lightbulb','link-out','link','list','location','lock','logout','magic-trick','magnet','magnifier','merge','movement-in','movement-out','moveto','multi-files','music','new','next','note','notification-email','offline','online','openwith','palette','paperplane','password','pen','people','percent-circle','percent','personal-data','phone-download','phone','pie-chart','pin','plus-small','plus','previous','printer','qualify','rename','repare','restore','right','rise','rotate-left','rotate-right','sad-cozy','safe','select-all','setting','share-circle','share','sound','spinner','stack','star','stats','sync-cozy','sync','target','team','telephone','to-the-cloud','top','trash','trophy','unlink','unlock','up','upload','videos','wallet-add','wallet-new','wallet','warn','warning-circle','warning','wrench-circle']; +const availableIcons = ['album-add','album-remove','album','answer','apple','archive','attachment','attention','bank','banking-add','banking','bell','bill','bottom','browser-brave','browser-chrome','browser-duckduckgo','browser-edge','browser-firefox','browser-ie','browser-opera','browser-safari','burger','calendar','camera','car','carbonCopy','categories','certified','check-circle','check-list','check-square','check','circle-filled','clock','cloud-happy','cloud','collect','comment','company','compass','connector','contract','contrast','cozy-laugh','cozy-text','credit-card-add','credit-card','credit','crop','cross-circle','cross-medium','cross-small','cross','cube','dash','dashboard','data-control','debit','devices','dots','down','download','drawing-arrow-up','dropdown-close','dropdown-open','dropdown','dropup','email-notification','email','eu','euro','exchange','eye-closed','eye','file-add','file-duotone','file-new','file-none','file-outline','file','filter','fingerprint','flag-outlined','flag','flash-auto','flashlight','folder-add','folder','forbidden','from-user','gear','globe','graph-circle','grid','group-list','groups','heart','help','history','home','hourglass','image','info-outlined','info','key','laptop','left','lightbulb','link-out','link','list','location','lock','logout','magic-trick','magnet','magnifier','merge','movement-in','movement-out','moveto','multi-files','music','new','next','note','notification-email','offline','online','openwith','palette','paperplane','password','pen','people','percent-circle','percent','personal-data','phone-download','phone','pie-chart','pin','plus-small','plus','previous','printer','qualify','rename','repare','restore','right','rise','rotate-left','rotate-right','sad-cozy','safe','select-all','setting','share-circle','share','sound','spinner','stack','star','stats','sync-cozy','sync','target','team','telephone','to-the-cloud','top','trash','trophy','unlink','unlock','up','upload','videos','wallet-add','wallet-new','wallet','warn','warning-circle','warning','wrench-circle'];
{ @@ -118,6 +118,7 @@ import Bank from 'cozy-ui/transpiled/react/Icons/Bank' import Banking from 'cozy-ui/transpiled/react/Icons/Banking' import BankingAdd from 'cozy-ui/transpiled/react/Icons/BankingAdd' import Bell from 'cozy-ui/transpiled/react/Icons/Bell' +import Bill from 'cozy-ui/transpiled/react/Icons/Bill' import Bottom from 'cozy-ui/transpiled/react/Icons/Bottom' import BrowserBrave from 'cozy-ui/transpiled/react/Icons/BrowserBrave' import BrowserChrome from 'cozy-ui/transpiled/react/Icons/BrowserChrome' @@ -306,6 +307,7 @@ const icons = [ Banking, BankingAdd, Bell, + Bill, Bottom, BrowserBrave, BrowserChrome, diff --git a/react/Icons/Bill.jsx b/react/Icons/Bill.jsx new file mode 100644 index 0000000000..f580df935e --- /dev/null +++ b/react/Icons/Bill.jsx @@ -0,0 +1,15 @@ +// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/bill.svg` to regenerate; +import React from 'react' + +function SvgBill(props) { + return ( + + + + ) +} + +export default SvgBill