@qsxy/element-plus-react 1.0.0-next.1 → 1.0.0-next.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (758) hide show
  1. package/README.md +95 -0
  2. package/dist/Avatar/Avatar.d.ts +4 -0
  3. package/dist/Avatar/Avatar.js +87 -0
  4. package/dist/Avatar/index.d.ts +2 -0
  5. package/dist/Avatar/index.js +1 -0
  6. package/dist/Avatar/typings.d.ts +21 -0
  7. package/dist/Avatar/typings.js +1 -0
  8. package/dist/Badge/Badge.d.ts +2 -2
  9. package/dist/Badge/Badge.js +63 -61
  10. package/dist/Badge/index.js +1 -39
  11. package/dist/Badge/typings.d.ts +11 -1
  12. package/dist/Badge/typings.js +1 -17
  13. package/dist/Breadcrumb/Breadcrumb.js +23 -53
  14. package/dist/Breadcrumb/BreadcrumbItem.js +45 -51
  15. package/dist/Breadcrumb/index.js +2 -42
  16. package/dist/Breadcrumb/typings.d.ts +4 -0
  17. package/dist/Breadcrumb/typings.js +1 -17
  18. package/dist/Button/Button.d.ts +0 -1
  19. package/dist/Button/Button.js +132 -93
  20. package/dist/Button/ButtonGroup.js +29 -48
  21. package/dist/Button/ButtonGroupContext.js +2 -30
  22. package/dist/Button/index.js +2 -42
  23. package/dist/Button/typings.d.ts +32 -2
  24. package/dist/Button/typings.js +1 -17
  25. package/dist/Button/useButtonCustomStyle.d.ts +4 -0
  26. package/dist/Button/useButtonCustomStyle.js +65 -0
  27. package/dist/Calendar/Calendar.js +310 -238
  28. package/dist/Calendar/CalendarContext.d.ts +10 -0
  29. package/dist/Calendar/CalendarContext.js +3 -27
  30. package/dist/Calendar/DatePanel.js +191 -158
  31. package/dist/Calendar/DateRangePanel.js +140 -125
  32. package/dist/Calendar/Footer.js +41 -52
  33. package/dist/Calendar/Header.js +83 -70
  34. package/dist/Calendar/MonthPanel.js +138 -124
  35. package/dist/Calendar/MonthRangePanel.js +137 -124
  36. package/dist/Calendar/ShortCuts.d.ts +2 -0
  37. package/dist/Calendar/ShortCuts.js +21 -40
  38. package/dist/Calendar/WeekPanel.js +213 -145
  39. package/dist/Calendar/YearPanel.js +150 -125
  40. package/dist/Calendar/YearRangePanel.js +138 -128
  41. package/dist/Calendar/index.js +4 -47
  42. package/dist/Calendar/typings.d.ts +18 -0
  43. package/dist/Calendar/typings.js +1 -17
  44. package/dist/Calendar/util.js +26 -68
  45. package/dist/Card/Card.js +36 -46
  46. package/dist/Card/index.js +1 -39
  47. package/dist/Card/typings.d.ts +4 -0
  48. package/dist/Card/typings.js +1 -17
  49. package/dist/Carousel/Carousel.d.ts +4 -0
  50. package/dist/Carousel/Carousel.js +204 -0
  51. package/dist/Carousel/CarouselContext.d.ts +4 -0
  52. package/dist/Carousel/CarouselContext.js +24 -0
  53. package/dist/Carousel/CarouselItem.d.ts +4 -0
  54. package/dist/Carousel/CarouselItem.js +59 -0
  55. package/dist/Carousel/hooks/useCarousel.d.ts +37 -0
  56. package/dist/Carousel/hooks/useCarousel.js +373 -0
  57. package/dist/Carousel/hooks/useCarouselItem.d.ts +8 -0
  58. package/dist/Carousel/hooks/useCarouselItem.js +165 -0
  59. package/dist/Carousel/index.d.ts +3 -0
  60. package/dist/Carousel/index.js +2 -0
  61. package/dist/Carousel/typings.d.ts +83 -0
  62. package/dist/Carousel/typings.js +1 -0
  63. package/dist/Cascader/Cascader.js +694 -604
  64. package/dist/Cascader/CascaderContext.d.ts +4 -10
  65. package/dist/Cascader/CascaderContext.js +10 -50
  66. package/dist/Cascader/CascaderDropdown.d.ts +1 -0
  67. package/dist/Cascader/CascaderDropdown.js +90 -77
  68. package/dist/Cascader/CascaderMenu.js +100 -186
  69. package/dist/Cascader/Utils.d.ts +0 -2
  70. package/dist/Cascader/Utils.js +6 -77
  71. package/dist/Cascader/index.d.ts +1 -1
  72. package/dist/Cascader/index.js +1 -39
  73. package/dist/Cascader/typings.d.ts +77 -13
  74. package/dist/Cascader/typings.js +1 -17
  75. package/dist/Cascader/useCascader.d.ts +61 -3
  76. package/dist/Cascader/useCascader.js +651 -488
  77. package/dist/Checkbox/Checkbox.d.ts +3 -3
  78. package/dist/Checkbox/Checkbox.js +136 -165
  79. package/dist/Checkbox/CheckboxButton.js +132 -161
  80. package/dist/Checkbox/index.js +2 -42
  81. package/dist/Checkbox/typings.d.ts +12 -1
  82. package/dist/Checkbox/typings.js +1 -17
  83. package/dist/CheckboxGroup/CheckboxGroup.d.ts +4 -0
  84. package/dist/CheckboxGroup/CheckboxGroup.js +133 -112
  85. package/dist/CheckboxGroup/CheckboxGroupContext.d.ts +1 -0
  86. package/dist/CheckboxGroup/CheckboxGroupContext.js +2 -30
  87. package/dist/CheckboxGroup/index.js +2 -42
  88. package/dist/Col/Col.js +53 -79
  89. package/dist/Col/index.js +1 -39
  90. package/dist/Col/typings.d.ts +10 -0
  91. package/dist/Col/typings.js +1 -17
  92. package/dist/Collapse/Collapse.js +36 -45
  93. package/dist/Collapse/CollapseContext.d.ts +3 -0
  94. package/dist/Collapse/CollapseContext.js +3 -31
  95. package/dist/Collapse/CollapseItem.js +88 -71
  96. package/dist/Collapse/CollapseTransition.d.ts +7 -6
  97. package/dist/Collapse/CollapseTransition.js +50 -70
  98. package/dist/Collapse/index.js +2 -42
  99. package/dist/Collapse/typings.d.ts +7 -0
  100. package/dist/Collapse/typings.js +1 -17
  101. package/dist/ColorPicker/AlphaSlider.d.ts +7 -0
  102. package/dist/ColorPicker/AlphaSlider.js +117 -100
  103. package/dist/ColorPicker/ColorPicker.d.ts +1 -1
  104. package/dist/ColorPicker/ColorPicker.js +233 -190
  105. package/dist/ColorPicker/HueSlider.d.ts +7 -0
  106. package/dist/ColorPicker/HueSlider.js +102 -97
  107. package/dist/ColorPicker/Predefine.d.ts +7 -0
  108. package/dist/ColorPicker/Predefine.js +65 -67
  109. package/dist/ColorPicker/SvPanel.d.ts +7 -0
  110. package/dist/ColorPicker/SvPanel.js +95 -82
  111. package/dist/ColorPicker/color.js +301 -213
  112. package/dist/ColorPicker/draggable.js +30 -48
  113. package/dist/ColorPicker/index.js +1 -39
  114. package/dist/ColorPicker/typings.d.ts +9 -0
  115. package/dist/ColorPicker/typings.js +1 -17
  116. package/dist/ColorPicker/util.js +23 -60
  117. package/dist/ConfigProvider/ConfigProvider.d.ts +5 -0
  118. package/dist/ConfigProvider/ConfigProvider.js +4 -28
  119. package/dist/ConfigProvider/index.js +1 -39
  120. package/dist/DatePicker/DatePicker.d.ts +3 -3
  121. package/dist/DatePicker/DatePicker.js +251 -216
  122. package/dist/DatePicker/DateRangePicker.d.ts +3 -3
  123. package/dist/DatePicker/DateRangePicker.js +279 -275
  124. package/dist/DatePicker/index.js +2 -39
  125. package/dist/DatePicker/main.d.ts +2 -2
  126. package/dist/DatePicker/main.js +21 -44
  127. package/dist/DatePicker/typings.d.ts +92 -16
  128. package/dist/DatePicker/typings.js +1 -17
  129. package/dist/DateTimePicker/DateTimePicker.d.ts +3 -5
  130. package/dist/DateTimePicker/DateTimePicker.js +290 -217
  131. package/dist/DateTimePicker/index.js +1 -39
  132. package/dist/DateTimePicker/typings.d.ts +10 -12
  133. package/dist/DateTimePicker/typings.js +1 -17
  134. package/dist/DateTimePicker/util.js +5 -35
  135. package/dist/Descriptions/Descriptions.js +83 -67
  136. package/dist/Descriptions/DescriptionsCell.js +67 -79
  137. package/dist/Descriptions/DescriptionsContext.d.ts +2 -0
  138. package/dist/Descriptions/DescriptionsContext.js +4 -32
  139. package/dist/Descriptions/DescriptionsItem.js +4 -27
  140. package/dist/Descriptions/DescriptionsRow.js +42 -44
  141. package/dist/Descriptions/index.js +2 -42
  142. package/dist/Descriptions/typings.d.ts +13 -0
  143. package/dist/Descriptions/typings.js +1 -17
  144. package/dist/Dialog/Dialog.d.ts +0 -1
  145. package/dist/Dialog/Dialog.js +224 -179
  146. package/dist/Dialog/DialogBody.js +52 -62
  147. package/dist/Dialog/DialogContext.d.ts +8 -0
  148. package/dist/Dialog/DialogContext.js +6 -44
  149. package/dist/Dialog/DialogFooter.js +21 -45
  150. package/dist/Dialog/DialogHeader.js +44 -53
  151. package/dist/Dialog/index.js +1 -39
  152. package/dist/Dialog/typings.d.ts +39 -3
  153. package/dist/Dialog/typings.js +1 -17
  154. package/dist/Dialog/useDraggable.js +52 -79
  155. package/dist/Divider/Divider.d.ts +7 -3
  156. package/dist/Divider/Divider.js +38 -49
  157. package/dist/Divider/index.js +1 -39
  158. package/dist/Drawer/Drawer.js +145 -123
  159. package/dist/Drawer/DrawerBody.js +35 -60
  160. package/dist/Drawer/DrawerContext.d.ts +10 -0
  161. package/dist/Drawer/DrawerContext.js +13 -44
  162. package/dist/Drawer/DrawerFooter.js +22 -43
  163. package/dist/Drawer/DrawerHeader.js +41 -51
  164. package/dist/Drawer/index.js +1 -39
  165. package/dist/Drawer/typings.d.ts +16 -0
  166. package/dist/Drawer/typings.js +1 -17
  167. package/dist/Dropdown/Dropdown.js +89 -103
  168. package/dist/Dropdown/DropdownContext.d.ts +2 -0
  169. package/dist/Dropdown/DropdownContext.js +5 -43
  170. package/dist/Dropdown/DropdownItem.js +40 -60
  171. package/dist/Dropdown/DropdownMenu.js +28 -56
  172. package/dist/Dropdown/index.js +3 -45
  173. package/dist/Dropdown/typings.d.ts +16 -1
  174. package/dist/Dropdown/typings.js +1 -17
  175. package/dist/Empty/Empty.js +32 -56
  176. package/dist/Empty/ImgEmpty.js +115 -117
  177. package/dist/Empty/index.js +1 -39
  178. package/dist/Form/FieldContext.js +8 -37
  179. package/dist/Form/Form.js +167 -158
  180. package/dist/Form/FormContext.js +58 -97
  181. package/dist/Form/FormItem.d.ts +12 -0
  182. package/dist/Form/FormItem.js +620 -350
  183. package/dist/Form/FormItemContext.js +3 -31
  184. package/dist/Form/List.js +121 -104
  185. package/dist/Form/ListContext.js +3 -27
  186. package/dist/Form/index.js +3 -45
  187. package/dist/Form/typings.d.ts +79 -3
  188. package/dist/Form/typings.js +1 -17
  189. package/dist/Form/useForm.d.ts +22 -0
  190. package/dist/Form/useForm.js +830 -690
  191. package/dist/Form/useWatch.js +64 -79
  192. package/dist/Form/utils/NameMap.d.ts +3 -0
  193. package/dist/Form/utils/NameMap.js +98 -69
  194. package/dist/Form/utils/asyncUtil.js +9 -37
  195. package/dist/Form/utils/classUtil.js +26 -48
  196. package/dist/Form/utils/cloneDeep.js +8 -29
  197. package/dist/Form/utils/get.js +6 -30
  198. package/dist/Form/utils/messages.js +25 -53
  199. package/dist/Form/utils/set.js +31 -44
  200. package/dist/Form/utils/typeUtil.js +3 -31
  201. package/dist/Form/utils/util.js +18 -55
  202. package/dist/Form/utils/validateUtil.d.ts +4 -0
  203. package/dist/Form/utils/validateUtil.js +284 -159
  204. package/dist/Form/utils/valueUtil.d.ts +17 -0
  205. package/dist/Form/utils/valueUtil.js +102 -107
  206. package/dist/Icon/Icon.js +39 -66
  207. package/dist/Icon/IconList/Check.js +25 -65
  208. package/dist/Icon/IconList/Close.js +23 -52
  209. package/dist/Icon/IconList/Delete.js +25 -65
  210. package/dist/Icon/IconList/Down.js +25 -65
  211. package/dist/Icon/IconList/Eye.js +25 -65
  212. package/dist/Icon/IconList/EyeClose.js +25 -65
  213. package/dist/Icon/IconList/Left.js +25 -65
  214. package/dist/Icon/IconList/Link.js +19 -55
  215. package/dist/Icon/IconList/More.js +25 -65
  216. package/dist/Icon/IconList/Question.js +25 -65
  217. package/dist/Icon/IconList/Right.js +25 -65
  218. package/dist/Icon/IconList/Search.js +25 -65
  219. package/dist/Icon/IconList/Up.js +25 -65
  220. package/dist/Icon/IconList/Upload.js +25 -65
  221. package/dist/Icon/IconList/index.js +14 -68
  222. package/dist/Icon/index.js +2 -42
  223. package/dist/Icon/typings.d.ts +7 -0
  224. package/dist/Icon/typings.js +1 -17
  225. package/dist/Input/Input.js +334 -350
  226. package/dist/Input/InputGroup.js +27 -43
  227. package/dist/Input/InputRange.js +295 -305
  228. package/dist/Input/TextArea.js +129 -116
  229. package/dist/Input/index.js +3 -45
  230. package/dist/Input/typings.d.ts +61 -0
  231. package/dist/Input/typings.js +1 -17
  232. package/dist/InputNumber/InputNumber.js +219 -200
  233. package/dist/InputNumber/index.js +1 -39
  234. package/dist/InputNumber/typings.d.ts +22 -1
  235. package/dist/InputNumber/typings.js +1 -17
  236. package/dist/Link/Link.js +43 -63
  237. package/dist/Link/index.js +1 -39
  238. package/dist/Link/typings.d.ts +6 -1
  239. package/dist/Link/typings.js +1 -17
  240. package/dist/Loading/Loading.js +97 -62
  241. package/dist/Loading/index.js +1 -39
  242. package/dist/Loading/typings.d.ts +5 -0
  243. package/dist/Loading/typings.js +1 -17
  244. package/dist/Message/Main.d.ts +7 -0
  245. package/dist/Message/Main.js +41 -66
  246. package/dist/Message/Message.js +167 -127
  247. package/dist/Message/index.d.ts +8 -0
  248. package/dist/Message/index.js +68 -88
  249. package/dist/Message/typings.d.ts +11 -0
  250. package/dist/Message/typings.js +1 -17
  251. package/dist/MessageBox/Main.js +42 -65
  252. package/dist/MessageBox/MessageBox.js +253 -202
  253. package/dist/MessageBox/index.d.ts +17 -3
  254. package/dist/MessageBox/index.js +74 -79
  255. package/dist/MessageBox/typings.d.ts +50 -0
  256. package/dist/MessageBox/typings.js +1 -17
  257. package/dist/Notification/Main.d.ts +7 -0
  258. package/dist/Notification/Main.js +41 -66
  259. package/dist/Notification/Notification.js +148 -128
  260. package/dist/Notification/index.d.ts +15 -0
  261. package/dist/Notification/index.js +76 -92
  262. package/dist/Notification/typings.d.ts +13 -0
  263. package/dist/Notification/typings.js +1 -17
  264. package/dist/Pagination/Options.js +104 -99
  265. package/dist/Pagination/Pager.js +30 -61
  266. package/dist/Pagination/Pagination.js +462 -376
  267. package/dist/Pagination/index.js +1 -39
  268. package/dist/Pagination/typings.d.ts +28 -0
  269. package/dist/Pagination/typings.js +1 -17
  270. package/dist/Pagination/util.js +10 -41
  271. package/dist/Popconfirm/Popconfirm.js +109 -113
  272. package/dist/Popconfirm/index.js +1 -39
  273. package/dist/Popconfirm/typings.d.ts +12 -1
  274. package/dist/Popconfirm/typings.js +1 -17
  275. package/dist/Popover/Popover.js +87 -85
  276. package/dist/Popover/index.js +1 -39
  277. package/dist/Popover/typings.d.ts +13 -1
  278. package/dist/Popover/typings.js +1 -17
  279. package/dist/Popper/Popper.js +172 -145
  280. package/dist/Popper/index.js +1 -39
  281. package/dist/Popper/popperOptions.js +79 -90
  282. package/dist/Popper/typings.d.ts +7 -1
  283. package/dist/Popper/typings.js +1 -17
  284. package/dist/Progress/Progress.js +186 -151
  285. package/dist/Progress/index.js +1 -39
  286. package/dist/Progress/typings.d.ts +12 -0
  287. package/dist/Progress/typings.js +1 -17
  288. package/dist/Radio/Radio.js +158 -117
  289. package/dist/Radio/RadioButton.js +127 -117
  290. package/dist/Radio/index.js +1 -39
  291. package/dist/Radio/typings.d.ts +7 -0
  292. package/dist/Radio/typings.js +1 -17
  293. package/dist/RadioGroup/RadioGroup.js +63 -78
  294. package/dist/RadioGroup/index.js +1 -39
  295. package/dist/RadioGroup/typings.d.ts +1 -0
  296. package/dist/RadioGroup/typings.js +1 -17
  297. package/dist/Row/Row.js +41 -59
  298. package/dist/Row/RowContext.d.ts +1 -0
  299. package/dist/Row/RowContext.js +3 -31
  300. package/dist/Row/index.js +2 -42
  301. package/dist/Row/typings.d.ts +4 -0
  302. package/dist/Row/typings.js +1 -17
  303. package/dist/Scrollbar/Scrollbar.js +172 -129
  304. package/dist/Scrollbar/Thumb.js +108 -96
  305. package/dist/Scrollbar/index.js +1 -39
  306. package/dist/Scrollbar/typings.d.ts +31 -2
  307. package/dist/Scrollbar/typings.js +1 -17
  308. package/dist/Scrollbar/util.js +24 -51
  309. package/dist/Select/Option.js +50 -75
  310. package/dist/Select/OptionGroup.js +31 -47
  311. package/dist/Select/Select.js +25 -48
  312. package/dist/Select/SelectContext.js +8 -46
  313. package/dist/Select/SelectCore.js +449 -374
  314. package/dist/Select/SelectDropdown.js +200 -160
  315. package/dist/Select/index.js +2 -42
  316. package/dist/Select/typings.d.ts +34 -1
  317. package/dist/Select/typings.js +1 -17
  318. package/dist/Skeleton/PlaceholderGraph.d.ts +4 -0
  319. package/dist/Skeleton/PlaceholderGraph.js +39 -45
  320. package/dist/Skeleton/PlaceholderGrid.d.ts +4 -0
  321. package/dist/Skeleton/PlaceholderGrid.js +55 -71
  322. package/dist/Skeleton/PlaceholderParagraph.d.ts +4 -0
  323. package/dist/Skeleton/PlaceholderParagraph.js +51 -56
  324. package/dist/Skeleton/Skeleton.js +8 -42
  325. package/dist/Skeleton/index.js +1 -39
  326. package/dist/Switch/Switch.js +177 -151
  327. package/dist/Switch/index.js +1 -39
  328. package/dist/Switch/typings.d.ts +15 -0
  329. package/dist/Switch/typings.js +1 -17
  330. package/dist/Table/Colgroup.d.ts +1 -0
  331. package/dist/Table/Colgroup.js +17 -41
  332. package/dist/Table/Table.js +246 -184
  333. package/dist/Table/TableBody.js +265 -231
  334. package/dist/Table/TableCell.js +461 -325
  335. package/dist/Table/TableColumn.js +9 -47
  336. package/dist/Table/TableContext.d.ts +8 -0
  337. package/dist/Table/TableContext.js +44 -63
  338. package/dist/Table/TableHeader.js +112 -102
  339. package/dist/Table/TableHeaderCell.js +211 -158
  340. package/dist/Table/hooks/useResize.js +69 -83
  341. package/dist/Table/hooks/useScroll.js +88 -114
  342. package/dist/Table/hooks/useSelection.d.ts +10 -0
  343. package/dist/Table/hooks/useSelection.js +145 -110
  344. package/dist/Table/hooks/useTable.d.ts +7 -0
  345. package/dist/Table/hooks/useTable.js +411 -309
  346. package/dist/Table/index.js +2 -42
  347. package/dist/Table/treeUtil.d.ts +39 -0
  348. package/dist/Table/treeUtil.js +99 -77
  349. package/dist/Table/typings.d.ts +137 -1
  350. package/dist/Table/typings.js +1 -17
  351. package/dist/Table/util.d.ts +10 -0
  352. package/dist/Table/util.js +168 -109
  353. package/dist/Tabs/TabPane.js +51 -53
  354. package/dist/Tabs/Tabs.js +277 -181
  355. package/dist/Tabs/TabsContext.js +4 -32
  356. package/dist/Tabs/index.js +2 -42
  357. package/dist/Tabs/typings.d.ts +38 -0
  358. package/dist/Tabs/typings.js +1 -17
  359. package/dist/Tag/Tag.d.ts +1 -1
  360. package/dist/Tag/Tag.js +75 -75
  361. package/dist/Tag/index.js +1 -39
  362. package/dist/Tag/typings.d.ts +10 -0
  363. package/dist/Tag/typings.js +1 -17
  364. package/dist/TimeLine/TimeLine.js +13 -42
  365. package/dist/TimeLine/TimeLineItem.js +66 -51
  366. package/dist/TimeLine/index.js +2 -42
  367. package/dist/TimeLine/typings.d.ts +9 -0
  368. package/dist/TimeLine/typings.js +1 -17
  369. package/dist/TimePicker/TimePicker.d.ts +1 -4
  370. package/dist/TimePicker/TimePicker.js +275 -211
  371. package/dist/TimePicker/TimePickerPanel.js +62 -71
  372. package/dist/TimePicker/TimePickerRange.d.ts +4 -4
  373. package/dist/TimePicker/TimePickerRange.js +372 -332
  374. package/dist/TimePicker/TimeRangePanel.js +182 -165
  375. package/dist/TimePicker/TimeSpinnerPanel.js +321 -269
  376. package/dist/TimePicker/index.d.ts +2 -3
  377. package/dist/TimePicker/index.js +1 -42
  378. package/dist/TimePicker/main.d.ts +9 -0
  379. package/dist/TimePicker/main.js +17 -0
  380. package/dist/TimePicker/typings.d.ts +39 -21
  381. package/dist/TimePicker/typings.js +1 -17
  382. package/dist/TimePicker/useTimePicker.d.ts +7 -0
  383. package/dist/TimePicker/useTimePicker.js +62 -65
  384. package/dist/TimePicker/util.js +8 -40
  385. package/dist/Tooltip/Tooltip.js +172 -187
  386. package/dist/Tooltip/TooltipContext.d.ts +1 -0
  387. package/dist/Tooltip/TooltipContext.js +8 -46
  388. package/dist/Tooltip/index.js +2 -42
  389. package/dist/Tooltip/typings.d.ts +14 -1
  390. package/dist/Tooltip/typings.js +1 -17
  391. package/dist/Transfer/List.js +290 -237
  392. package/dist/Transfer/ListBody.js +92 -106
  393. package/dist/Transfer/ListItem.d.ts +1 -0
  394. package/dist/Transfer/ListItem.js +38 -51
  395. package/dist/Transfer/Transfer.js +323 -276
  396. package/dist/Transfer/index.js +1 -39
  397. package/dist/Transfer/interface.js +1 -17
  398. package/dist/Transfer/operation.js +35 -48
  399. package/dist/Transfer/search.js +30 -62
  400. package/dist/Transfer/typings/index.d.ts +27 -0
  401. package/dist/Transfer/typings/index.js +1 -17
  402. package/dist/Transfer/typings/list.d.ts +25 -0
  403. package/dist/Transfer/typings/list.js +1 -17
  404. package/dist/Transfer/typings/listBody.d.ts +1 -0
  405. package/dist/Transfer/typings/listBody.js +2 -30
  406. package/dist/Transition/Transition.d.ts +16 -3
  407. package/dist/Transition/Transition.js +271 -232
  408. package/dist/Transition/TransitionGroup.d.ts +59 -0
  409. package/dist/Transition/TransitionGroup.js +136 -88
  410. package/dist/Transition/TransitionGroupContext.js +2 -26
  411. package/dist/Transition/childMapping.d.ts +23 -0
  412. package/dist/Transition/childMapping.js +84 -71
  413. package/dist/Transition/index.js +2 -42
  414. package/dist/Transition/util.d.ts +0 -1
  415. package/dist/Transition/util.js +6 -47
  416. package/dist/Tree/DirectoryTree.d.ts +6 -13
  417. package/dist/Tree/DirectoryTree.js +149 -170
  418. package/dist/Tree/DropIndicator.d.ts +4 -2
  419. package/dist/Tree/DropIndicator.js +16 -41
  420. package/dist/Tree/Indent.d.ts +2 -2
  421. package/dist/Tree/Indent.js +23 -54
  422. package/dist/Tree/MotionTreeNode.d.ts +4 -5
  423. package/dist/Tree/MotionTreeNode.js +120 -104
  424. package/dist/Tree/NodeList.d.ts +18 -11
  425. package/dist/Tree/NodeList.js +232 -216
  426. package/dist/Tree/RCTree.d.ts +92 -75
  427. package/dist/Tree/RCTree.js +980 -702
  428. package/dist/Tree/Tree.d.ts +18 -3
  429. package/dist/Tree/Tree.js +65 -80
  430. package/dist/Tree/TreeNode.d.ts +5 -83
  431. package/dist/Tree/TreeNode.js +367 -473
  432. package/dist/Tree/contextTypes.d.ts +40 -30
  433. package/dist/Tree/contextTypes.js +8 -29
  434. package/dist/Tree/index.d.ts +2 -2
  435. package/dist/Tree/index.js +4 -48
  436. package/dist/Tree/typings.d.ts +63 -19
  437. package/dist/Tree/typings.js +1 -29
  438. package/dist/Tree/typings.tsx--bak +245 -0
  439. package/dist/Tree/useUnmount.d.ts +5 -0
  440. package/dist/Tree/useUnmount.js +34 -0
  441. package/dist/Tree/util.d.ts +31 -18
  442. package/dist/Tree/util.js +160 -169
  443. package/dist/Tree/utils/conductUtil.d.ts +8 -2
  444. package/dist/Tree/utils/conductUtil.js +113 -93
  445. package/dist/Tree/utils/dictUtil.d.ts +8 -3
  446. package/dist/Tree/utils/dictUtil.js +44 -55
  447. package/dist/Tree/utils/diffUtil.d.ts +4 -3
  448. package/dist/Tree/utils/diffUtil.js +26 -43
  449. package/dist/Tree/utils/dropIndicator.js +23 -51
  450. package/dist/Tree/utils/iconUtil.js +44 -51
  451. package/dist/Tree/utils/keyUtil.d.ts +2 -0
  452. package/dist/Tree/utils/keyUtil.js +3 -0
  453. package/dist/Tree/utils/motion.js +34 -71
  454. package/dist/Tree/utils/pickAttrs.d.ts +5 -0
  455. package/dist/Tree/utils/pickAttrs.js +30 -58
  456. package/dist/Tree/utils/treeUtil.d.ts +40 -18
  457. package/dist/Tree/utils/treeUtil.js +268 -187
  458. package/dist/TreeSelect/TreeSelect.js +527 -464
  459. package/dist/TreeSelect/Utils.d.ts +2 -1
  460. package/dist/TreeSelect/Utils.js +15 -36
  461. package/dist/TreeSelect/index.js +1 -39
  462. package/dist/TreeSelect/typings.d.ts +20 -1
  463. package/dist/TreeSelect/typings.js +1 -17
  464. package/dist/Upload/Upload.js +106 -108
  465. package/dist/Upload/UploadContent.js +227 -182
  466. package/dist/Upload/UploadContext.js +5 -33
  467. package/dist/Upload/UploadDrag.js +77 -97
  468. package/dist/Upload/UploadList.js +104 -72
  469. package/dist/Upload/ajax.js +45 -71
  470. package/dist/Upload/index.js +1 -39
  471. package/dist/Upload/typings.d.ts +34 -0
  472. package/dist/Upload/typings.js +34 -36
  473. package/dist/Upload/use-handlers.d.ts +1 -0
  474. package/dist/Upload/use-handlers.js +182 -126
  475. package/dist/Util/Math.d.ts +34 -0
  476. package/dist/Util/Math.js +81 -78
  477. package/dist/Util/PopupManager.js +5 -27
  478. package/dist/Util/base.d.ts +22 -0
  479. package/dist/Util/base.js +109 -162
  480. package/dist/Util/genFileId.js +3 -29
  481. package/dist/Util/index.js +6 -51
  482. package/dist/Util/resize-event.js +31 -54
  483. package/dist/Util/shallowEqual.d.ts +11 -0
  484. package/dist/Util/shallowEqual.js +30 -28
  485. package/dist/Util/treeUtils.d.ts +8 -0
  486. package/dist/Util/treeUtils.js +68 -64
  487. package/dist/config/Constants.js +17 -47
  488. package/dist/display.css +1 -0
  489. package/dist/fonts/fa-brands-400.ttf +0 -0
  490. package/dist/fonts/fa-brands-400.woff2 +0 -0
  491. package/dist/fonts/fa-duotone-900.ttf +0 -0
  492. package/dist/fonts/fa-duotone-900.woff2 +0 -0
  493. package/dist/fonts/fa-light-300.ttf +0 -0
  494. package/dist/fonts/fa-light-300.woff2 +0 -0
  495. package/dist/fonts/fa-regular-400.ttf +0 -0
  496. package/dist/fonts/fa-regular-400.woff2 +0 -0
  497. package/dist/fonts/fa-solid-900.ttf +0 -0
  498. package/dist/fonts/fa-solid-900.woff2 +0 -0
  499. package/dist/fonts/fa-thin-100.ttf +0 -0
  500. package/dist/fonts/fa-thin-100.woff2 +0 -0
  501. package/dist/fonts/fa-v4compatibility.ttf +0 -0
  502. package/dist/fonts/fa-v4compatibility.woff2 +0 -0
  503. package/dist/hooks/animationPropsUtils.d.ts +12 -0
  504. package/dist/hooks/animationPropsUtils.js +25 -49
  505. package/dist/hooks/htmlPropsUtils.d.ts +8 -0
  506. package/dist/hooks/htmlPropsUtils.js +54 -121
  507. package/dist/hooks/index.js +14 -73
  508. package/dist/hooks/popperPropsUtils.d.ts +12 -0
  509. package/dist/hooks/popperPropsUtils.js +25 -67
  510. package/dist/hooks/prefix.d.ts +1 -1
  511. package/dist/hooks/prefix.js +22 -55
  512. package/dist/hooks/treePropsUtils.d.ts +12 -0
  513. package/dist/hooks/treePropsUtils.js +24 -103
  514. package/dist/hooks/useChildrenInstance.d.ts +11 -0
  515. package/dist/hooks/useChildrenInstance.js +51 -60
  516. package/dist/hooks/useClassNames.d.ts +81 -0
  517. package/dist/hooks/useClassNames.js +284 -192
  518. package/dist/hooks/useClickOutside.js +37 -62
  519. package/dist/hooks/useCommonProps.js +17 -53
  520. package/dist/hooks/useComponentWillMount.js +4 -28
  521. package/dist/hooks/useControlled.d.ts +8 -0
  522. package/dist/hooks/useControlled.js +31 -37
  523. package/dist/hooks/useForceUpdate.d.ts +1 -0
  524. package/dist/hooks/useForceUpdate.js +16 -34
  525. package/dist/hooks/useUpdateEffect.js +6 -29
  526. package/dist/index.css +1 -58071
  527. package/dist/index.d.ts +8 -7
  528. package/dist/index.js +69 -234
  529. package/dist/theme-chalk/avatar/index.scss +50 -0
  530. package/dist/theme-chalk/build.scss +2 -0
  531. package/dist/theme-chalk/calendar/month-table.scss +1 -1
  532. package/dist/theme-chalk/carousel/index.scss +237 -0
  533. package/dist/theme-chalk/checkbox/index.scss +2 -2
  534. package/dist/theme-chalk/common/_var.scss +1 -0
  535. package/dist/theme-chalk/common/index.js +1 -2
  536. package/dist/theme-chalk/common/index.scss +2 -2
  537. package/dist/theme-chalk/date-picker/index.scss +1 -1
  538. package/dist/theme-chalk/dev.scss +2 -0
  539. package/dist/theme-chalk/display.scss +46 -0
  540. package/dist/theme-chalk/doc.scss +2 -0
  541. package/dist/theme-chalk/fonts/fa-brands-400.ttf +0 -0
  542. package/dist/theme-chalk/fonts/fa-brands-400.woff2 +0 -0
  543. package/dist/theme-chalk/fonts/fa-duotone-900.ttf +0 -0
  544. package/dist/theme-chalk/fonts/fa-duotone-900.woff2 +0 -0
  545. package/dist/theme-chalk/fonts/fa-light-300.ttf +0 -0
  546. package/dist/theme-chalk/fonts/fa-light-300.woff2 +0 -0
  547. package/dist/theme-chalk/fonts/fa-regular-400.ttf +0 -0
  548. package/dist/theme-chalk/fonts/fa-regular-400.woff2 +0 -0
  549. package/dist/theme-chalk/fonts/fa-solid-900.ttf +0 -0
  550. package/dist/theme-chalk/fonts/fa-solid-900.woff2 +0 -0
  551. package/dist/theme-chalk/fonts/fa-thin-100.ttf +0 -0
  552. package/dist/theme-chalk/fonts/fa-thin-100.woff2 +0 -0
  553. package/dist/theme-chalk/fonts/fa-v4compatibility.ttf +0 -0
  554. package/dist/theme-chalk/fonts/fa-v4compatibility.woff2 +0 -0
  555. package/dist/theme-chalk/form/index.scss +21 -2
  556. package/dist/theme-chalk/icon/fonts.scss +9 -0
  557. package/dist/theme-chalk/icon/index.scss +0 -9
  558. package/dist/theme-chalk/icon/scss/_shims.scss +318 -318
  559. package/dist/theme-chalk/icon/scss/_variables.scss +1 -3
  560. package/dist/theme-chalk/icon/scss/brands.scss +0 -5
  561. package/dist/theme-chalk/icon/scss/duotone.scss +0 -5
  562. package/dist/theme-chalk/icon/scss/fontawesome.scss +0 -8
  563. package/dist/theme-chalk/icon/scss/light.scss +2 -7
  564. package/dist/theme-chalk/icon/scss/regular.scss +2 -7
  565. package/dist/theme-chalk/icon/scss/solid.scss +2 -7
  566. package/dist/theme-chalk/icon/scss/thin.scss +2 -7
  567. package/dist/theme-chalk/icon/scss/v4-shims.scss +0 -8
  568. package/dist/theme-chalk/index.scss +3 -0
  569. package/dist/theme-chalk/input/input.scss +5 -3
  570. package/dist/theme-chalk/link/index.scss +0 -85
  571. package/dist/theme-chalk/loading/index.scss +5 -7
  572. package/dist/theme-chalk/message/index.scss +5 -5
  573. package/dist/theme-chalk/notification/index.scss +5 -5
  574. package/dist/theme-chalk/pagination/index.scss +1 -1
  575. package/dist/theme-chalk/tabs/index.scss +1 -1
  576. package/dist/types/common.d.ts +24 -0
  577. package/dist/types/common.js +1 -17
  578. package/dist/types/type.d.ts +5 -0
  579. package/dist/types/type.js +16 -28
  580. package/package.json +8 -23
  581. package/theme-chalk/avatar/index.scss +50 -0
  582. package/theme-chalk/badge/index.scss +63 -0
  583. package/theme-chalk/breadcrumb/index.scss +65 -0
  584. package/theme-chalk/build.scss +2 -0
  585. package/{dist/theme-chalk/bak/mixins/_button.scss → theme-chalk/button/_mixins.scss} +151 -58
  586. package/theme-chalk/button/button-group.scss +83 -0
  587. package/theme-chalk/button/button.scss +382 -0
  588. package/theme-chalk/button/index.scss +2 -0
  589. package/theme-chalk/calendar/date-picker.scss +112 -0
  590. package/theme-chalk/calendar/date-range-picker.scss +139 -0
  591. package/theme-chalk/calendar/date-table.scss +156 -0
  592. package/theme-chalk/calendar/index.scss +6 -0
  593. package/theme-chalk/calendar/month-table.scss +92 -0
  594. package/theme-chalk/calendar/picker-panel.scss +136 -0
  595. package/theme-chalk/calendar/year-table.scss +107 -0
  596. package/theme-chalk/card/index.scss +44 -0
  597. package/theme-chalk/carousel/index.scss +237 -0
  598. package/theme-chalk/cascader/cascader-panel.scss +184 -0
  599. package/theme-chalk/cascader/cascader.scss +239 -0
  600. package/theme-chalk/cascader/index.scss +2 -0
  601. package/theme-chalk/checkbox/index.scss +255 -0
  602. package/theme-chalk/checkbox-button/index.scss +117 -0
  603. package/theme-chalk/checkbox-group/index.scss +33 -0
  604. package/{dist/theme-chalk/bak/mixins/_col.scss → theme-chalk/col/_mixins.scss} +27 -3
  605. package/theme-chalk/col/index.scss +50 -0
  606. package/theme-chalk/collapse/index.scss +84 -0
  607. package/theme-chalk/color-picker/index.scss +340 -0
  608. package/{dist/theme-chalk/bak/mixins/config.scss → theme-chalk/common/_var.scss} +1 -0
  609. package/theme-chalk/common/index.scss +222 -0
  610. package/theme-chalk/common/index.ts +1 -0
  611. package/theme-chalk/date-picker/index.scss +253 -0
  612. package/theme-chalk/date-time-picker/index.scss +3 -0
  613. package/theme-chalk/date-time-picker/time-picker.scss +83 -0
  614. package/theme-chalk/date-time-picker/time-range-picker.scss +32 -0
  615. package/theme-chalk/descriptions/descriptions-item.scss +66 -0
  616. package/theme-chalk/descriptions/descriptions.scss +160 -0
  617. package/theme-chalk/descriptions/index.scss +2 -0
  618. package/theme-chalk/dev.scss +2 -0
  619. package/theme-chalk/dialog/index.scss +190 -0
  620. package/theme-chalk/display.scss +46 -0
  621. package/theme-chalk/divider/index.scss +51 -0
  622. package/theme-chalk/doc.scss +2 -0
  623. package/theme-chalk/drawer/index.scss +250 -0
  624. package/theme-chalk/dropdown/index.scss +147 -0
  625. package/theme-chalk/empty/index.scss +69 -0
  626. package/theme-chalk/fonts/fa-brands-400.ttf +0 -0
  627. package/theme-chalk/fonts/fa-brands-400.woff2 +0 -0
  628. package/theme-chalk/fonts/fa-duotone-900.ttf +0 -0
  629. package/theme-chalk/fonts/fa-duotone-900.woff2 +0 -0
  630. package/theme-chalk/fonts/fa-light-300.ttf +0 -0
  631. package/theme-chalk/fonts/fa-light-300.woff2 +0 -0
  632. package/theme-chalk/fonts/fa-regular-400.ttf +0 -0
  633. package/theme-chalk/fonts/fa-regular-400.woff2 +0 -0
  634. package/theme-chalk/fonts/fa-solid-900.ttf +0 -0
  635. package/theme-chalk/fonts/fa-solid-900.woff2 +0 -0
  636. package/theme-chalk/fonts/fa-thin-100.ttf +0 -0
  637. package/theme-chalk/fonts/fa-thin-100.woff2 +0 -0
  638. package/theme-chalk/fonts/fa-v4compatibility.ttf +0 -0
  639. package/theme-chalk/fonts/fa-v4compatibility.woff2 +0 -0
  640. package/theme-chalk/form/index.scss +378 -0
  641. package/theme-chalk/icon/fonts.scss +9 -0
  642. package/theme-chalk/icon/index.scss +44 -0
  643. package/theme-chalk/icon/scss/_animated.scss +205 -0
  644. package/theme-chalk/icon/scss/_bordered-pulled.scss +20 -0
  645. package/theme-chalk/icon/scss/_core.scss +33 -0
  646. package/theme-chalk/icon/scss/_duotone-icons.scss +12 -0
  647. package/theme-chalk/icon/scss/_fixed-width.scss +7 -0
  648. package/theme-chalk/icon/scss/_functions.scss +57 -0
  649. package/theme-chalk/icon/scss/_icons.scss +11 -0
  650. package/theme-chalk/icon/scss/_list.scss +20 -0
  651. package/theme-chalk/icon/scss/_mixins.scss +102 -0
  652. package/theme-chalk/icon/scss/_rotated-flipped.scss +31 -0
  653. package/theme-chalk/icon/scss/_screen-reader.scss +14 -0
  654. package/theme-chalk/icon/scss/_shims.scss +2606 -0
  655. package/theme-chalk/icon/scss/_sizing.scss +16 -0
  656. package/theme-chalk/icon/scss/_stacked.scss +32 -0
  657. package/theme-chalk/icon/scss/_variables.scss +9189 -0
  658. package/theme-chalk/icon/scss/brands.scss +27 -0
  659. package/theme-chalk/icon/scss/duotone.scss +72 -0
  660. package/theme-chalk/icon/scss/fontawesome.scss +13 -0
  661. package/theme-chalk/icon/scss/index.scss +15 -0
  662. package/theme-chalk/icon/scss/light.scss +21 -0
  663. package/theme-chalk/icon/scss/regular.scss +21 -0
  664. package/theme-chalk/icon/scss/solid.scss +21 -0
  665. package/theme-chalk/icon/scss/thin.scss +21 -0
  666. package/theme-chalk/icon/scss/v4-shims.scss +3 -0
  667. package/theme-chalk/index.scss +67 -0
  668. package/theme-chalk/input/_mixins.scss +16 -0
  669. package/theme-chalk/input/index.scss +3 -0
  670. package/theme-chalk/input/input-range.scss +208 -0
  671. package/theme-chalk/input/input.scss +577 -0
  672. package/theme-chalk/input-number/index.scss +172 -0
  673. package/theme-chalk/link/index.scss +99 -0
  674. package/theme-chalk/loading/index.scss +94 -0
  675. package/theme-chalk/message/index.scss +169 -0
  676. package/theme-chalk/message-box/index.scss +184 -0
  677. package/theme-chalk/notification/index.scss +155 -0
  678. package/theme-chalk/pagination/index.scss +515 -0
  679. package/theme-chalk/placeholder/index.scss +135 -0
  680. package/theme-chalk/popconfirm/index.scss +35 -0
  681. package/theme-chalk/popover/index.scss +54 -0
  682. package/theme-chalk/popper/index.scss +86 -0
  683. package/theme-chalk/progress/index.scss +155 -0
  684. package/theme-chalk/radio/index.scss +2 -0
  685. package/theme-chalk/radio/radio-button.scss +128 -0
  686. package/theme-chalk/radio/radio.scss +171 -0
  687. package/theme-chalk/radio-group/index.scss +31 -0
  688. package/theme-chalk/row/index.scss +30 -0
  689. package/theme-chalk/scrollbar/index.scss +103 -0
  690. package/theme-chalk/select/index.scss +244 -0
  691. package/theme-chalk/select/option-group.scss +54 -0
  692. package/theme-chalk/select/option.scss +63 -0
  693. package/theme-chalk/select/select-dropdown.scss +57 -0
  694. package/theme-chalk/switch/index.scss +273 -0
  695. package/theme-chalk/table/index.scss +714 -0
  696. package/theme-chalk/tabs/index.scss +620 -0
  697. package/theme-chalk/tag/index.scss +360 -0
  698. package/theme-chalk/time-line/_timeline-item.scss +90 -0
  699. package/theme-chalk/time-line/_timeline.scss +50 -0
  700. package/theme-chalk/time-line/index.scss +2 -0
  701. package/theme-chalk/time-picker/index.scss +109 -0
  702. package/theme-chalk/tooltip/index.scss +13 -0
  703. package/theme-chalk/transfer/index.scss +247 -0
  704. package/theme-chalk/transition/index.scss +756 -0
  705. package/theme-chalk/tree/_directory.scss +73 -0
  706. package/theme-chalk/tree/_tree.scss +401 -0
  707. package/theme-chalk/tree/index.scss +2 -0
  708. package/theme-chalk/tree-select/index.scss +25 -0
  709. package/theme-chalk/upload/index.scss +631 -0
  710. package/dist/Tree/utils/KeyCode.d.ts +0 -110
  711. package/dist/Tree/utils/KeyCode.js +0 -550
  712. package/dist/VirtualList/Filler.d.ts +0 -11
  713. package/dist/VirtualList/Filler.js +0 -78
  714. package/dist/VirtualList/Item.d.ts +0 -7
  715. package/dist/VirtualList/Item.js +0 -37
  716. package/dist/VirtualList/ScrollBar.d.ts +0 -43
  717. package/dist/VirtualList/ScrollBar.js +0 -216
  718. package/dist/VirtualList/VirtualList.d.ts +0 -33
  719. package/dist/VirtualList/VirtualList.js +0 -280
  720. package/dist/VirtualList/hooks/useChildren.d.ts +0 -3
  721. package/dist/VirtualList/hooks/useChildren.js +0 -46
  722. package/dist/VirtualList/hooks/useDiffItem.d.ts +0 -2
  723. package/dist/VirtualList/hooks/useDiffItem.js +0 -39
  724. package/dist/VirtualList/hooks/useFrameWheel.d.ts +0 -6
  725. package/dist/VirtualList/hooks/useFrameWheel.js +0 -72
  726. package/dist/VirtualList/hooks/useHeights.d.ts +0 -3
  727. package/dist/VirtualList/hooks/useHeights.js +0 -83
  728. package/dist/VirtualList/hooks/useLayoutEffect.d.ts +0 -3
  729. package/dist/VirtualList/hooks/useLayoutEffect.js +0 -30
  730. package/dist/VirtualList/hooks/useMobileTouchMove.d.ts +0 -2
  731. package/dist/VirtualList/hooks/useMobileTouchMove.js +0 -92
  732. package/dist/VirtualList/hooks/useOriginScroll.d.ts +0 -2
  733. package/dist/VirtualList/hooks/useOriginScroll.js +0 -56
  734. package/dist/VirtualList/hooks/useScrollTo.d.ts +0 -5
  735. package/dist/VirtualList/hooks/useScrollTo.js +0 -111
  736. package/dist/VirtualList/index.d.ts +0 -2
  737. package/dist/VirtualList/index.js +0 -39
  738. package/dist/VirtualList/interface.d.ts +0 -8
  739. package/dist/VirtualList/interface.js +0 -17
  740. package/dist/VirtualList/mock.d.ts +0 -6
  741. package/dist/VirtualList/mock.js +0 -29
  742. package/dist/VirtualList/utils/CacheMap.d.ts +0 -7
  743. package/dist/VirtualList/utils/CacheMap.js +0 -36
  744. package/dist/VirtualList/utils/algorithmUtil.d.ts +0 -6
  745. package/dist/VirtualList/utils/algorithmUtil.js +0 -81
  746. package/dist/VirtualList/utils/findDOMNode.d.ts +0 -2
  747. package/dist/VirtualList/utils/findDOMNode.js +0 -30
  748. package/dist/VirtualList/utils/isFirefox.d.ts +0 -2
  749. package/dist/VirtualList/utils/isFirefox.js +0 -26
  750. package/dist/VirtualList/utils/raf.d.ts +0 -5
  751. package/dist/VirtualList/utils/raf.js +0 -57
  752. package/dist/theme-chalk/bak/common/popup.scss +0 -47
  753. package/dist/theme-chalk/bak/common/transition.scss +0 -118
  754. package/dist/theme-chalk/bak/common/var.scss +0 -1476
  755. package/dist/theme-chalk/bak/mixins/_var.scss +0 -55
  756. package/dist/theme-chalk/bak/mixins/function.scss +0 -85
  757. package/dist/theme-chalk/bak/mixins/mixins.scss +0 -215
  758. package/dist/theme-chalk/bak/mixins/utils.scss +0 -39
@@ -3,7 +3,7 @@
3
3
  }
4
4
 
5
5
  .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
6
- font-family: 'R Icons';
6
+ font-family: $fa-style-family;
7
7
  font-weight: 400;
8
8
  }
9
9
  .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before {
@@ -11,7 +11,7 @@
11
11
  }
12
12
 
13
13
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
14
- font-family: 'R Icons';
14
+ font-family: $fa-style-family;
15
15
  font-weight: 400;
16
16
  }
17
17
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before {
@@ -31,7 +31,7 @@
31
31
  }
32
32
 
33
33
  .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
34
- font-family: 'R Icons';
34
+ font-family: $fa-style-family;
35
35
  font-weight: 400;
36
36
  }
37
37
  .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before {
@@ -43,7 +43,7 @@
43
43
  }
44
44
 
45
45
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
46
- font-family: 'R Icons';
46
+ font-family: $fa-style-family;
47
47
  font-weight: 400;
48
48
  }
49
49
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before {
@@ -51,7 +51,7 @@
51
51
  }
52
52
 
53
53
  .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
54
- font-family: 'R Icons';
54
+ font-family: $fa-style-family;
55
55
  font-weight: 400;
56
56
  }
57
57
  .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before {
@@ -59,7 +59,7 @@
59
59
  }
60
60
 
61
61
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
62
- font-family: 'R Icons';
62
+ font-family: $fa-style-family;
63
63
  font-weight: 400;
64
64
  }
65
65
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before {
@@ -67,7 +67,7 @@
67
67
  }
68
68
 
69
69
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
70
- font-family: 'R Icons';
70
+ font-family: $fa-style-family;
71
71
  font-weight: 400;
72
72
  }
73
73
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before {
@@ -75,7 +75,7 @@
75
75
  }
76
76
 
77
77
  .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
78
- font-family: 'R Icons';
78
+ font-family: $fa-style-family;
79
79
  font-weight: 400;
80
80
  }
81
81
  .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before {
@@ -95,7 +95,7 @@
95
95
  }
96
96
 
97
97
  .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
98
- font-family: 'R Icons';
98
+ font-family: $fa-style-family;
99
99
  font-weight: 400;
100
100
  }
101
101
  .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt:before {
@@ -111,7 +111,7 @@
111
111
  }
112
112
 
113
113
  .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
114
- font-family: 'R Icons';
114
+ font-family: $fa-style-family;
115
115
  font-weight: 400;
116
116
  }
117
117
  .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before {
@@ -119,7 +119,7 @@
119
119
  }
120
120
 
121
121
  .#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
122
- font-family: 'R Icons';
122
+ font-family: $fa-style-family;
123
123
  font-weight: 400;
124
124
  }
125
125
  .#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before {
@@ -127,7 +127,7 @@
127
127
  }
128
128
 
129
129
  .#{$fa-css-prefix}.#{$fa-css-prefix}-image {
130
- font-family: 'R Icons';
130
+ font-family: $fa-style-family;
131
131
  font-weight: 400;
132
132
  }
133
133
  .#{$fa-css-prefix}.#{$fa-css-prefix}-image:before {
@@ -139,7 +139,7 @@
139
139
  }
140
140
 
141
141
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
142
- font-family: 'R Icons';
142
+ font-family: $fa-style-family;
143
143
  font-weight: 400;
144
144
  }
145
145
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before {
@@ -147,7 +147,7 @@
147
147
  }
148
148
 
149
149
  .#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
150
- font-family: 'R Icons';
150
+ font-family: $fa-style-family;
151
151
  font-weight: 400;
152
152
  }
153
153
  .#{$fa-css-prefix}.#{$fa-css-prefix}-edit:before {
@@ -159,7 +159,7 @@
159
159
  }
160
160
 
161
161
  .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
162
- font-family: 'R Icons';
162
+ font-family: $fa-style-family;
163
163
  font-weight: 400;
164
164
  }
165
165
  .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before {
@@ -171,7 +171,7 @@
171
171
  }
172
172
 
173
173
  .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
174
- font-family: 'R Icons';
174
+ font-family: $fa-style-family;
175
175
  font-weight: 400;
176
176
  }
177
177
  .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before {
@@ -179,7 +179,7 @@
179
179
  }
180
180
 
181
181
  .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
182
- font-family: 'R Icons';
182
+ font-family: $fa-style-family;
183
183
  font-weight: 400;
184
184
  }
185
185
  .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before {
@@ -199,12 +199,12 @@
199
199
  }
200
200
 
201
201
  .#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
202
- font-family: 'R Icons';
202
+ font-family: $fa-style-family;
203
203
  font-weight: 400;
204
204
  }
205
205
 
206
206
  .#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
207
- font-family: 'R Icons';
207
+ font-family: $fa-style-family;
208
208
  font-weight: 400;
209
209
  }
210
210
 
@@ -233,12 +233,12 @@
233
233
  }
234
234
 
235
235
  .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
236
- font-family: 'R Icons';
236
+ font-family: $fa-style-family;
237
237
  font-weight: 400;
238
238
  }
239
239
 
240
240
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
241
- font-family: 'R Icons';
241
+ font-family: $fa-style-family;
242
242
  font-weight: 400;
243
243
  }
244
244
 
@@ -247,7 +247,7 @@
247
247
  }
248
248
 
249
249
  .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
250
- font-family: 'R Icons';
250
+ font-family: $fa-style-family;
251
251
  font-weight: 400;
252
252
  }
253
253
  .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before {
@@ -255,7 +255,7 @@
255
255
  }
256
256
 
257
257
  .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
258
- font-family: 'R Icons';
258
+ font-family: $fa-style-family;
259
259
  font-weight: 400;
260
260
  }
261
261
  .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before {
@@ -263,7 +263,7 @@
263
263
  }
264
264
 
265
265
  .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
266
- font-family: 'R Icons';
266
+ font-family: $fa-style-family;
267
267
  font-weight: 400;
268
268
  }
269
269
  .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before {
@@ -275,7 +275,7 @@
275
275
  }
276
276
 
277
277
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
278
- font-family: 'R Icons';
278
+ font-family: $fa-style-family;
279
279
  font-weight: 400;
280
280
  }
281
281
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before {
@@ -295,12 +295,12 @@
295
295
  }
296
296
 
297
297
  .#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
298
- font-family: 'R Icons';
298
+ font-family: $fa-style-family;
299
299
  font-weight: 400;
300
300
  }
301
301
 
302
302
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
303
- font-family: 'R Icons';
303
+ font-family: $fa-style-family;
304
304
  font-weight: 400;
305
305
  }
306
306
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before {
@@ -308,7 +308,7 @@
308
308
  }
309
309
 
310
310
  .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
311
- font-family: 'R Icons';
311
+ font-family: $fa-style-family;
312
312
  font-weight: 400;
313
313
  }
314
314
  .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before {
@@ -316,7 +316,7 @@
316
316
  }
317
317
 
318
318
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
319
- font-family: 'R Icons';
319
+ font-family: $fa-style-family;
320
320
  font-weight: 400;
321
321
  }
322
322
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before {
@@ -324,12 +324,12 @@
324
324
  }
325
325
 
326
326
  .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
327
- font-family: 'R Icons';
327
+ font-family: $fa-style-family;
328
328
  font-weight: 400;
329
329
  }
330
330
 
331
331
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
332
- font-family: 'R Icons';
332
+ font-family: $fa-style-family;
333
333
  font-weight: 400;
334
334
  }
335
335
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before {
@@ -337,7 +337,7 @@
337
337
  }
338
338
 
339
339
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
340
- font-family: 'R Icons';
340
+ font-family: $fa-style-family;
341
341
  font-weight: 400;
342
342
  }
343
343
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before {
@@ -345,12 +345,12 @@
345
345
  }
346
346
 
347
347
  .#{$fa-css-prefix}.#{$fa-css-prefix}-github {
348
- font-family: 'R Icons';
348
+ font-family: $fa-style-family;
349
349
  font-weight: 400;
350
350
  }
351
351
 
352
352
  .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
353
- font-family: 'R Icons';
353
+ font-family: $fa-style-family;
354
354
  font-weight: 400;
355
355
  }
356
356
 
@@ -359,7 +359,7 @@
359
359
  }
360
360
 
361
361
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
362
- font-family: 'R Icons';
362
+ font-family: $fa-style-family;
363
363
  font-weight: 400;
364
364
  }
365
365
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before {
@@ -367,7 +367,7 @@
367
367
  }
368
368
 
369
369
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
370
- font-family: 'R Icons';
370
+ font-family: $fa-style-family;
371
371
  font-weight: 400;
372
372
  }
373
373
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before {
@@ -375,7 +375,7 @@
375
375
  }
376
376
 
377
377
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
378
- font-family: 'R Icons';
378
+ font-family: $fa-style-family;
379
379
  font-weight: 400;
380
380
  }
381
381
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before {
@@ -383,7 +383,7 @@
383
383
  }
384
384
 
385
385
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
386
- font-family: 'R Icons';
386
+ font-family: $fa-style-family;
387
387
  font-weight: 400;
388
388
  }
389
389
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before {
@@ -391,7 +391,7 @@
391
391
  }
392
392
 
393
393
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
394
- font-family: 'R Icons';
394
+ font-family: $fa-style-family;
395
395
  font-weight: 400;
396
396
  }
397
397
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before {
@@ -423,7 +423,7 @@
423
423
  }
424
424
 
425
425
  .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
426
- font-family: 'R Icons';
426
+ font-family: $fa-style-family;
427
427
  font-weight: 400;
428
428
  }
429
429
  .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before {
@@ -431,7 +431,7 @@
431
431
  }
432
432
 
433
433
  .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
434
- font-family: 'R Icons';
434
+ font-family: $fa-style-family;
435
435
  font-weight: 400;
436
436
  }
437
437
  .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before {
@@ -439,7 +439,7 @@
439
439
  }
440
440
 
441
441
  .#{$fa-css-prefix}.#{$fa-css-prefix}-save {
442
- font-family: 'R Icons';
442
+ font-family: $fa-style-family;
443
443
  font-weight: 400;
444
444
  }
445
445
  .#{$fa-css-prefix}.#{$fa-css-prefix}-save:before {
@@ -459,22 +459,22 @@
459
459
  }
460
460
 
461
461
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
462
- font-family: 'R Icons';
462
+ font-family: $fa-style-family;
463
463
  font-weight: 400;
464
464
  }
465
465
 
466
466
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
467
- font-family: 'R Icons';
467
+ font-family: $fa-style-family;
468
468
  font-weight: 400;
469
469
  }
470
470
 
471
471
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
472
- font-family: 'R Icons';
472
+ font-family: $fa-style-family;
473
473
  font-weight: 400;
474
474
  }
475
475
 
476
476
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
477
- font-family: 'R Icons';
477
+ font-family: $fa-style-family;
478
478
  font-weight: 400;
479
479
  }
480
480
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before {
@@ -498,7 +498,7 @@
498
498
  }
499
499
 
500
500
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
501
- font-family: 'R Icons';
501
+ font-family: $fa-style-family;
502
502
  font-weight: 400;
503
503
  }
504
504
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before {
@@ -522,7 +522,7 @@
522
522
  }
523
523
 
524
524
  .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
525
- font-family: 'R Icons';
525
+ font-family: $fa-style-family;
526
526
  font-weight: 400;
527
527
  }
528
528
  .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before {
@@ -530,7 +530,7 @@
530
530
  }
531
531
 
532
532
  .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
533
- font-family: 'R Icons';
533
+ font-family: $fa-style-family;
534
534
  font-weight: 400;
535
535
  }
536
536
  .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before {
@@ -546,7 +546,7 @@
546
546
  }
547
547
 
548
548
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
549
- font-family: 'R Icons';
549
+ font-family: $fa-style-family;
550
550
  font-weight: 400;
551
551
  }
552
552
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before {
@@ -566,7 +566,7 @@
566
566
  }
567
567
 
568
568
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
569
- font-family: 'R Icons';
569
+ font-family: $fa-style-family;
570
570
  font-weight: 400;
571
571
  }
572
572
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before {
@@ -578,7 +578,7 @@
578
578
  }
579
579
 
580
580
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
581
- font-family: 'R Icons';
581
+ font-family: $fa-style-family;
582
582
  font-weight: 400;
583
583
  }
584
584
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before {
@@ -586,7 +586,7 @@
586
586
  }
587
587
 
588
588
  .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
589
- font-family: 'R Icons';
589
+ font-family: $fa-style-family;
590
590
  font-weight: 400;
591
591
  }
592
592
  .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before {
@@ -594,7 +594,7 @@
594
594
  }
595
595
 
596
596
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
597
- font-family: 'R Icons';
597
+ font-family: $fa-style-family;
598
598
  font-weight: 400;
599
599
  }
600
600
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before {
@@ -614,7 +614,7 @@
614
614
  }
615
615
 
616
616
  .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
617
- font-family: 'R Icons';
617
+ font-family: $fa-style-family;
618
618
  font-weight: 400;
619
619
  }
620
620
  .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before {
@@ -626,12 +626,12 @@
626
626
  }
627
627
 
628
628
  .#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
629
- font-family: 'R Icons';
629
+ font-family: $fa-style-family;
630
630
  font-weight: 400;
631
631
  }
632
632
 
633
633
  .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
634
- font-family: 'R Icons';
634
+ font-family: $fa-style-family;
635
635
  font-weight: 400;
636
636
  }
637
637
  .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before {
@@ -639,7 +639,7 @@
639
639
  }
640
640
 
641
641
  .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
642
- font-family: 'R Icons';
642
+ font-family: $fa-style-family;
643
643
  font-weight: 400;
644
644
  }
645
645
  .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before {
@@ -647,7 +647,7 @@
647
647
  }
648
648
 
649
649
  .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
650
- font-family: 'R Icons';
650
+ font-family: $fa-style-family;
651
651
  font-weight: 400;
652
652
  }
653
653
  .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before {
@@ -655,7 +655,7 @@
655
655
  }
656
656
 
657
657
  .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
658
- font-family: 'R Icons';
658
+ font-family: $fa-style-family;
659
659
  font-weight: 400;
660
660
  }
661
661
  .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before {
@@ -663,7 +663,7 @@
663
663
  }
664
664
 
665
665
  .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
666
- font-family: 'R Icons';
666
+ font-family: $fa-style-family;
667
667
  font-weight: 400;
668
668
  }
669
669
  .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before {
@@ -671,7 +671,7 @@
671
671
  }
672
672
 
673
673
  .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
674
- font-family: 'R Icons';
674
+ font-family: $fa-style-family;
675
675
  font-weight: 400;
676
676
  }
677
677
  .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before {
@@ -679,7 +679,7 @@
679
679
  }
680
680
 
681
681
  .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
682
- font-family: 'R Icons';
682
+ font-family: $fa-style-family;
683
683
  font-weight: 400;
684
684
  }
685
685
  .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before {
@@ -691,7 +691,7 @@
691
691
  }
692
692
 
693
693
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
694
- font-family: 'R Icons';
694
+ font-family: $fa-style-family;
695
695
  font-weight: 400;
696
696
  }
697
697
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before {
@@ -699,7 +699,7 @@
699
699
  }
700
700
 
701
701
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
702
- font-family: 'R Icons';
702
+ font-family: $fa-style-family;
703
703
  font-weight: 400;
704
704
  }
705
705
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before {
@@ -707,7 +707,7 @@
707
707
  }
708
708
 
709
709
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
710
- font-family: 'R Icons';
710
+ font-family: $fa-style-family;
711
711
  font-weight: 400;
712
712
  }
713
713
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before {
@@ -727,7 +727,7 @@
727
727
  }
728
728
 
729
729
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
730
- font-family: 'R Icons';
730
+ font-family: $fa-style-family;
731
731
  font-weight: 400;
732
732
  }
733
733
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before {
@@ -735,17 +735,17 @@
735
735
  }
736
736
 
737
737
  .#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
738
- font-family: 'R Icons';
738
+ font-family: $fa-style-family;
739
739
  font-weight: 400;
740
740
  }
741
741
 
742
742
  .#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
743
- font-family: 'R Icons';
743
+ font-family: $fa-style-family;
744
744
  font-weight: 400;
745
745
  }
746
746
 
747
747
  .#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
748
- font-family: 'R Icons';
748
+ font-family: $fa-style-family;
749
749
  font-weight: 400;
750
750
  }
751
751
 
@@ -754,7 +754,7 @@
754
754
  }
755
755
 
756
756
  .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
757
- font-family: 'R Icons';
757
+ font-family: $fa-style-family;
758
758
  font-weight: 400;
759
759
  }
760
760
  .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before {
@@ -778,12 +778,12 @@
778
778
  }
779
779
 
780
780
  .#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
781
- font-family: 'R Icons';
781
+ font-family: $fa-style-family;
782
782
  font-weight: 400;
783
783
  }
784
784
 
785
785
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
786
- font-family: 'R Icons';
786
+ font-family: $fa-style-family;
787
787
  font-weight: 400;
788
788
  }
789
789
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before {
@@ -791,7 +791,7 @@
791
791
  }
792
792
 
793
793
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
794
- font-family: 'R Icons';
794
+ font-family: $fa-style-family;
795
795
  font-weight: 400;
796
796
  }
797
797
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before {
@@ -799,7 +799,7 @@
799
799
  }
800
800
 
801
801
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
802
- font-family: 'R Icons';
802
+ font-family: $fa-style-family;
803
803
  font-weight: 400;
804
804
  }
805
805
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before {
@@ -807,7 +807,7 @@
807
807
  }
808
808
 
809
809
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
810
- font-family: 'R Icons';
810
+ font-family: $fa-style-family;
811
811
  font-weight: 400;
812
812
  }
813
813
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before {
@@ -815,7 +815,7 @@
815
815
  }
816
816
 
817
817
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
818
- font-family: 'R Icons';
818
+ font-family: $fa-style-family;
819
819
  font-weight: 400;
820
820
  }
821
821
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before {
@@ -823,7 +823,7 @@
823
823
  }
824
824
 
825
825
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
826
- font-family: 'R Icons';
826
+ font-family: $fa-style-family;
827
827
  font-weight: 400;
828
828
  }
829
829
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before {
@@ -895,12 +895,12 @@
895
895
  }
896
896
 
897
897
  .#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
898
- font-family: 'R Icons';
898
+ font-family: $fa-style-family;
899
899
  font-weight: 400;
900
900
  }
901
901
 
902
902
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
903
- font-family: 'R Icons';
903
+ font-family: $fa-style-family;
904
904
  font-weight: 400;
905
905
  }
906
906
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before {
@@ -936,27 +936,27 @@
936
936
  }
937
937
 
938
938
  .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
939
- font-family: 'R Icons';
939
+ font-family: $fa-style-family;
940
940
  font-weight: 400;
941
941
  }
942
942
 
943
943
  .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
944
- font-family: 'R Icons';
944
+ font-family: $fa-style-family;
945
945
  font-weight: 400;
946
946
  }
947
947
 
948
948
  .#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
949
- font-family: 'R Icons';
949
+ font-family: $fa-style-family;
950
950
  font-weight: 400;
951
951
  }
952
952
 
953
953
  .#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
954
- font-family: 'R Icons';
954
+ font-family: $fa-style-family;
955
955
  font-weight: 400;
956
956
  }
957
957
 
958
958
  .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
959
- font-family: 'R Icons';
959
+ font-family: $fa-style-family;
960
960
  font-weight: 400;
961
961
  }
962
962
  .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before {
@@ -964,37 +964,37 @@
964
964
  }
965
965
 
966
966
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
967
- font-family: 'R Icons';
967
+ font-family: $fa-style-family;
968
968
  font-weight: 400;
969
969
  }
970
970
 
971
971
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
972
- font-family: 'R Icons';
972
+ font-family: $fa-style-family;
973
973
  font-weight: 400;
974
974
  }
975
975
 
976
976
  .#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
977
- font-family: 'R Icons';
977
+ font-family: $fa-style-family;
978
978
  font-weight: 400;
979
979
  }
980
980
 
981
981
  .#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
982
- font-family: 'R Icons';
982
+ font-family: $fa-style-family;
983
983
  font-weight: 400;
984
984
  }
985
985
 
986
986
  .#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
987
- font-family: 'R Icons';
987
+ font-family: $fa-style-family;
988
988
  font-weight: 400;
989
989
  }
990
990
 
991
991
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
992
- font-family: 'R Icons';
992
+ font-family: $fa-style-family;
993
993
  font-weight: 400;
994
994
  }
995
995
 
996
996
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
997
- font-family: 'R Icons';
997
+ font-family: $fa-style-family;
998
998
  font-weight: 400;
999
999
  }
1000
1000
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before {
@@ -1002,12 +1002,12 @@
1002
1002
  }
1003
1003
 
1004
1004
  .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
1005
- font-family: 'R Icons';
1005
+ font-family: $fa-style-family;
1006
1006
  font-weight: 400;
1007
1007
  }
1008
1008
 
1009
1009
  .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
1010
- font-family: 'R Icons';
1010
+ font-family: $fa-style-family;
1011
1011
  font-weight: 400;
1012
1012
  }
1013
1013
 
@@ -1028,52 +1028,52 @@
1028
1028
  }
1029
1029
 
1030
1030
  .#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
1031
- font-family: 'R Icons';
1031
+ font-family: $fa-style-family;
1032
1032
  font-weight: 400;
1033
1033
  }
1034
1034
 
1035
1035
  .#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
1036
- font-family: 'R Icons';
1036
+ font-family: $fa-style-family;
1037
1037
  font-weight: 400;
1038
1038
  }
1039
1039
 
1040
1040
  .#{$fa-css-prefix}.#{$fa-css-prefix}-android {
1041
- font-family: 'R Icons';
1041
+ font-family: $fa-style-family;
1042
1042
  font-weight: 400;
1043
1043
  }
1044
1044
 
1045
1045
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
1046
- font-family: 'R Icons';
1046
+ font-family: $fa-style-family;
1047
1047
  font-weight: 400;
1048
1048
  }
1049
1049
 
1050
1050
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
1051
- font-family: 'R Icons';
1051
+ font-family: $fa-style-family;
1052
1052
  font-weight: 400;
1053
1053
  }
1054
1054
 
1055
1055
  .#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
1056
- font-family: 'R Icons';
1056
+ font-family: $fa-style-family;
1057
1057
  font-weight: 400;
1058
1058
  }
1059
1059
 
1060
1060
  .#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
1061
- font-family: 'R Icons';
1061
+ font-family: $fa-style-family;
1062
1062
  font-weight: 400;
1063
1063
  }
1064
1064
 
1065
1065
  .#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
1066
- font-family: 'R Icons';
1066
+ font-family: $fa-style-family;
1067
1067
  font-weight: 400;
1068
1068
  }
1069
1069
 
1070
1070
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
1071
- font-family: 'R Icons';
1071
+ font-family: $fa-style-family;
1072
1072
  font-weight: 400;
1073
1073
  }
1074
1074
 
1075
1075
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
1076
- font-family: 'R Icons';
1076
+ font-family: $fa-style-family;
1077
1077
  font-weight: 400;
1078
1078
  }
1079
1079
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before {
@@ -1081,7 +1081,7 @@
1081
1081
  }
1082
1082
 
1083
1083
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
1084
- font-family: 'R Icons';
1084
+ font-family: $fa-style-family;
1085
1085
  font-weight: 400;
1086
1086
  }
1087
1087
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before {
@@ -1089,7 +1089,7 @@
1089
1089
  }
1090
1090
 
1091
1091
  .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
1092
- font-family: 'R Icons';
1092
+ font-family: $fa-style-family;
1093
1093
  font-weight: 400;
1094
1094
  }
1095
1095
  .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before {
@@ -1097,32 +1097,32 @@
1097
1097
  }
1098
1098
 
1099
1099
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
1100
- font-family: 'R Icons';
1100
+ font-family: $fa-style-family;
1101
1101
  font-weight: 400;
1102
1102
  }
1103
1103
 
1104
1104
  .#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
1105
- font-family: 'R Icons';
1105
+ font-family: $fa-style-family;
1106
1106
  font-weight: 400;
1107
1107
  }
1108
1108
 
1109
1109
  .#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
1110
- font-family: 'R Icons';
1110
+ font-family: $fa-style-family;
1111
1111
  font-weight: 400;
1112
1112
  }
1113
1113
 
1114
1114
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
1115
- font-family: 'R Icons';
1115
+ font-family: $fa-style-family;
1116
1116
  font-weight: 400;
1117
1117
  }
1118
1118
 
1119
1119
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
1120
- font-family: 'R Icons';
1120
+ font-family: $fa-style-family;
1121
1121
  font-weight: 400;
1122
1122
  }
1123
1123
 
1124
1124
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
1125
- font-family: 'R Icons';
1125
+ font-family: $fa-style-family;
1126
1126
  font-weight: 400;
1127
1127
  }
1128
1128
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before {
@@ -1130,7 +1130,7 @@
1130
1130
  }
1131
1131
 
1132
1132
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
1133
- font-family: 'R Icons';
1133
+ font-family: $fa-style-family;
1134
1134
  font-weight: 400;
1135
1135
  }
1136
1136
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before {
@@ -1138,7 +1138,7 @@
1138
1138
  }
1139
1139
 
1140
1140
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
1141
- font-family: 'R Icons';
1141
+ font-family: $fa-style-family;
1142
1142
  font-weight: 400;
1143
1143
  }
1144
1144
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before {
@@ -1146,7 +1146,7 @@
1146
1146
  }
1147
1147
 
1148
1148
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
1149
- font-family: 'R Icons';
1149
+ font-family: $fa-style-family;
1150
1150
  font-weight: 400;
1151
1151
  }
1152
1152
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before {
@@ -1154,7 +1154,7 @@
1154
1154
  }
1155
1155
 
1156
1156
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
1157
- font-family: 'R Icons';
1157
+ font-family: $fa-style-family;
1158
1158
  font-weight: 400;
1159
1159
  }
1160
1160
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before {
@@ -1162,7 +1162,7 @@
1162
1162
  }
1163
1163
 
1164
1164
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
1165
- font-family: 'R Icons';
1165
+ font-family: $fa-style-family;
1166
1166
  font-weight: 400;
1167
1167
  }
1168
1168
 
@@ -1175,7 +1175,7 @@
1175
1175
  }
1176
1176
 
1177
1177
  .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
1178
- font-family: 'R Icons';
1178
+ font-family: $fa-style-family;
1179
1179
  font-weight: 400;
1180
1180
  }
1181
1181
  .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before {
@@ -1183,17 +1183,17 @@
1183
1183
  }
1184
1184
 
1185
1185
  .#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
1186
- font-family: 'R Icons';
1186
+ font-family: $fa-style-family;
1187
1187
  font-weight: 400;
1188
1188
  }
1189
1189
 
1190
1190
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
1191
- font-family: 'R Icons';
1191
+ font-family: $fa-style-family;
1192
1192
  font-weight: 400;
1193
1193
  }
1194
1194
 
1195
1195
  .#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
1196
- font-family: 'R Icons';
1196
+ font-family: $fa-style-family;
1197
1197
  font-weight: 400;
1198
1198
  }
1199
1199
 
@@ -1210,82 +1210,82 @@
1210
1210
  }
1211
1211
 
1212
1212
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
1213
- font-family: 'R Icons';
1213
+ font-family: $fa-style-family;
1214
1214
  font-weight: 400;
1215
1215
  }
1216
1216
 
1217
1217
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google {
1218
- font-family: 'R Icons';
1218
+ font-family: $fa-style-family;
1219
1219
  font-weight: 400;
1220
1220
  }
1221
1221
 
1222
1222
  .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
1223
- font-family: 'R Icons';
1223
+ font-family: $fa-style-family;
1224
1224
  font-weight: 400;
1225
1225
  }
1226
1226
 
1227
1227
  .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
1228
- font-family: 'R Icons';
1228
+ font-family: $fa-style-family;
1229
1229
  font-weight: 400;
1230
1230
  }
1231
1231
 
1232
1232
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
1233
- font-family: 'R Icons';
1233
+ font-family: $fa-style-family;
1234
1234
  font-weight: 400;
1235
1235
  }
1236
1236
 
1237
1237
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
1238
- font-family: 'R Icons';
1238
+ font-family: $fa-style-family;
1239
1239
  font-weight: 400;
1240
1240
  }
1241
1241
 
1242
1242
  .#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
1243
- font-family: 'R Icons';
1243
+ font-family: $fa-style-family;
1244
1244
  font-weight: 400;
1245
1245
  }
1246
1246
 
1247
1247
  .#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
1248
- font-family: 'R Icons';
1248
+ font-family: $fa-style-family;
1249
1249
  font-weight: 400;
1250
1250
  }
1251
1251
 
1252
1252
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
1253
- font-family: 'R Icons';
1253
+ font-family: $fa-style-family;
1254
1254
  font-weight: 400;
1255
1255
  }
1256
1256
 
1257
1257
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
1258
- font-family: 'R Icons';
1258
+ font-family: $fa-style-family;
1259
1259
  font-weight: 400;
1260
1260
  }
1261
1261
 
1262
1262
  .#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
1263
- font-family: 'R Icons';
1263
+ font-family: $fa-style-family;
1264
1264
  font-weight: 400;
1265
1265
  }
1266
1266
 
1267
1267
  .#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
1268
- font-family: 'R Icons';
1268
+ font-family: $fa-style-family;
1269
1269
  font-weight: 400;
1270
1270
  }
1271
1271
 
1272
1272
  .#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
1273
- font-family: 'R Icons';
1273
+ font-family: $fa-style-family;
1274
1274
  font-weight: 400;
1275
1275
  }
1276
1276
 
1277
1277
  .#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
1278
- font-family: 'R Icons';
1278
+ font-family: $fa-style-family;
1279
1279
  font-weight: 400;
1280
1280
  }
1281
1281
 
1282
1282
  .#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
1283
- font-family: 'R Icons';
1283
+ font-family: $fa-style-family;
1284
1284
  font-weight: 400;
1285
1285
  }
1286
1286
 
1287
1287
  .#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
1288
- font-family: 'R Icons';
1288
+ font-family: $fa-style-family;
1289
1289
  font-weight: 400;
1290
1290
  }
1291
1291
 
@@ -1298,22 +1298,22 @@
1298
1298
  }
1299
1299
 
1300
1300
  .#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
1301
- font-family: 'R Icons';
1301
+ font-family: $fa-style-family;
1302
1302
  font-weight: 400;
1303
1303
  }
1304
1304
 
1305
1305
  .#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
1306
- font-family: 'R Icons';
1306
+ font-family: $fa-style-family;
1307
1307
  font-weight: 400;
1308
1308
  }
1309
1309
 
1310
1310
  .#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
1311
- font-family: 'R Icons';
1311
+ font-family: $fa-style-family;
1312
1312
  font-weight: 400;
1313
1313
  }
1314
1314
 
1315
1315
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
1316
- font-family: 'R Icons';
1316
+ font-family: $fa-style-family;
1317
1317
  font-weight: 400;
1318
1318
  }
1319
1319
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before {
@@ -1321,7 +1321,7 @@
1321
1321
  }
1322
1322
 
1323
1323
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
1324
- font-family: 'R Icons';
1324
+ font-family: $fa-style-family;
1325
1325
  font-weight: 400;
1326
1326
  }
1327
1327
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before {
@@ -1329,7 +1329,7 @@
1329
1329
  }
1330
1330
 
1331
1331
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
1332
- font-family: 'R Icons';
1332
+ font-family: $fa-style-family;
1333
1333
  font-weight: 400;
1334
1334
  }
1335
1335
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before {
@@ -1337,7 +1337,7 @@
1337
1337
  }
1338
1338
 
1339
1339
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
1340
- font-family: 'R Icons';
1340
+ font-family: $fa-style-family;
1341
1341
  font-weight: 400;
1342
1342
  }
1343
1343
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before {
@@ -1345,7 +1345,7 @@
1345
1345
  }
1346
1346
 
1347
1347
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
1348
- font-family: 'R Icons';
1348
+ font-family: $fa-style-family;
1349
1349
  font-weight: 400;
1350
1350
  }
1351
1351
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before {
@@ -1353,7 +1353,7 @@
1353
1353
  }
1354
1354
 
1355
1355
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
1356
- font-family: 'R Icons';
1356
+ font-family: $fa-style-family;
1357
1357
  font-weight: 400;
1358
1358
  }
1359
1359
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before {
@@ -1361,7 +1361,7 @@
1361
1361
  }
1362
1362
 
1363
1363
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
1364
- font-family: 'R Icons';
1364
+ font-family: $fa-style-family;
1365
1365
  font-weight: 400;
1366
1366
  }
1367
1367
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before {
@@ -1369,7 +1369,7 @@
1369
1369
  }
1370
1370
 
1371
1371
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
1372
- font-family: 'R Icons';
1372
+ font-family: $fa-style-family;
1373
1373
  font-weight: 400;
1374
1374
  }
1375
1375
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before {
@@ -1377,7 +1377,7 @@
1377
1377
  }
1378
1378
 
1379
1379
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
1380
- font-family: 'R Icons';
1380
+ font-family: $fa-style-family;
1381
1381
  font-weight: 400;
1382
1382
  }
1383
1383
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before {
@@ -1385,7 +1385,7 @@
1385
1385
  }
1386
1386
 
1387
1387
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
1388
- font-family: 'R Icons';
1388
+ font-family: $fa-style-family;
1389
1389
  font-weight: 400;
1390
1390
  }
1391
1391
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before {
@@ -1393,7 +1393,7 @@
1393
1393
  }
1394
1394
 
1395
1395
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
1396
- font-family: 'R Icons';
1396
+ font-family: $fa-style-family;
1397
1397
  font-weight: 400;
1398
1398
  }
1399
1399
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before {
@@ -1401,7 +1401,7 @@
1401
1401
  }
1402
1402
 
1403
1403
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
1404
- font-family: 'R Icons';
1404
+ font-family: $fa-style-family;
1405
1405
  font-weight: 400;
1406
1406
  }
1407
1407
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before {
@@ -1409,7 +1409,7 @@
1409
1409
  }
1410
1410
 
1411
1411
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
1412
- font-family: 'R Icons';
1412
+ font-family: $fa-style-family;
1413
1413
  font-weight: 400;
1414
1414
  }
1415
1415
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before {
@@ -1417,7 +1417,7 @@
1417
1417
  }
1418
1418
 
1419
1419
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
1420
- font-family: 'R Icons';
1420
+ font-family: $fa-style-family;
1421
1421
  font-weight: 400;
1422
1422
  }
1423
1423
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before {
@@ -1425,17 +1425,17 @@
1425
1425
  }
1426
1426
 
1427
1427
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
1428
- font-family: 'R Icons';
1428
+ font-family: $fa-style-family;
1429
1429
  font-weight: 400;
1430
1430
  }
1431
1431
 
1432
1432
  .#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
1433
- font-family: 'R Icons';
1433
+ font-family: $fa-style-family;
1434
1434
  font-weight: 400;
1435
1435
  }
1436
1436
 
1437
1437
  .#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
1438
- font-family: 'R Icons';
1438
+ font-family: $fa-style-family;
1439
1439
  font-weight: 400;
1440
1440
  }
1441
1441
 
@@ -1460,12 +1460,12 @@
1460
1460
  }
1461
1461
 
1462
1462
  .#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
1463
- font-family: 'R Icons';
1463
+ font-family: $fa-style-family;
1464
1464
  font-weight: 400;
1465
1465
  }
1466
1466
 
1467
1467
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
1468
- font-family: 'R Icons';
1468
+ font-family: $fa-style-family;
1469
1469
  font-weight: 400;
1470
1470
  }
1471
1471
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before {
@@ -1473,7 +1473,7 @@
1473
1473
  }
1474
1474
 
1475
1475
  .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
1476
- font-family: 'R Icons';
1476
+ font-family: $fa-style-family;
1477
1477
  font-weight: 400;
1478
1478
  }
1479
1479
  .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before {
@@ -1481,12 +1481,12 @@
1481
1481
  }
1482
1482
 
1483
1483
  .#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
1484
- font-family: 'R Icons';
1484
+ font-family: $fa-style-family;
1485
1485
  font-weight: 400;
1486
1486
  }
1487
1487
 
1488
1488
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
1489
- font-family: 'R Icons';
1489
+ font-family: $fa-style-family;
1490
1490
  font-weight: 400;
1491
1491
  }
1492
1492
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before {
@@ -1494,22 +1494,22 @@
1494
1494
  }
1495
1495
 
1496
1496
  .#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
1497
- font-family: 'R Icons';
1497
+ font-family: $fa-style-family;
1498
1498
  font-weight: 400;
1499
1499
  }
1500
1500
 
1501
1501
  .#{$fa-css-prefix}.#{$fa-css-prefix}-git {
1502
- font-family: 'R Icons';
1502
+ font-family: $fa-style-family;
1503
1503
  font-weight: 400;
1504
1504
  }
1505
1505
 
1506
1506
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
1507
- font-family: 'R Icons';
1507
+ font-family: $fa-style-family;
1508
1508
  font-weight: 400;
1509
1509
  }
1510
1510
 
1511
1511
  .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
1512
- font-family: 'R Icons';
1512
+ font-family: $fa-style-family;
1513
1513
  font-weight: 400;
1514
1514
  }
1515
1515
  .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before {
@@ -1517,7 +1517,7 @@
1517
1517
  }
1518
1518
 
1519
1519
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
1520
- font-family: 'R Icons';
1520
+ font-family: $fa-style-family;
1521
1521
  font-weight: 400;
1522
1522
  }
1523
1523
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before {
@@ -1525,22 +1525,22 @@
1525
1525
  }
1526
1526
 
1527
1527
  .#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
1528
- font-family: 'R Icons';
1528
+ font-family: $fa-style-family;
1529
1529
  font-weight: 400;
1530
1530
  }
1531
1531
 
1532
1532
  .#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
1533
- font-family: 'R Icons';
1533
+ font-family: $fa-style-family;
1534
1534
  font-weight: 400;
1535
1535
  }
1536
1536
 
1537
1537
  .#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
1538
- font-family: 'R Icons';
1538
+ font-family: $fa-style-family;
1539
1539
  font-weight: 400;
1540
1540
  }
1541
1541
 
1542
1542
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
1543
- font-family: 'R Icons';
1543
+ font-family: $fa-style-family;
1544
1544
  font-weight: 400;
1545
1545
  }
1546
1546
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before {
@@ -1552,7 +1552,7 @@
1552
1552
  }
1553
1553
 
1554
1554
  .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
1555
- font-family: 'R Icons';
1555
+ font-family: $fa-style-family;
1556
1556
  font-weight: 400;
1557
1557
  }
1558
1558
  .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before {
@@ -1560,7 +1560,7 @@
1560
1560
  }
1561
1561
 
1562
1562
  .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
1563
- font-family: 'R Icons';
1563
+ font-family: $fa-style-family;
1564
1564
  font-weight: 400;
1565
1565
  }
1566
1566
  .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before {
@@ -1568,7 +1568,7 @@
1568
1568
  }
1569
1569
 
1570
1570
  .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
1571
- font-family: 'R Icons';
1571
+ font-family: $fa-style-family;
1572
1572
  font-weight: 400;
1573
1573
  }
1574
1574
  .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before {
@@ -1580,7 +1580,7 @@
1580
1580
  }
1581
1581
 
1582
1582
  .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
1583
- font-family: 'R Icons';
1583
+ font-family: $fa-style-family;
1584
1584
  font-weight: 400;
1585
1585
  }
1586
1586
  .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before {
@@ -1588,7 +1588,7 @@
1588
1588
  }
1589
1589
 
1590
1590
  .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
1591
- font-family: 'R Icons';
1591
+ font-family: $fa-style-family;
1592
1592
  font-weight: 400;
1593
1593
  }
1594
1594
  .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before {
@@ -1596,22 +1596,22 @@
1596
1596
  }
1597
1597
 
1598
1598
  .#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
1599
- font-family: 'R Icons';
1599
+ font-family: $fa-style-family;
1600
1600
  font-weight: 400;
1601
1601
  }
1602
1602
 
1603
1603
  .#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
1604
- font-family: 'R Icons';
1604
+ font-family: $fa-style-family;
1605
1605
  font-weight: 400;
1606
1606
  }
1607
1607
 
1608
1608
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
1609
- font-family: 'R Icons';
1609
+ font-family: $fa-style-family;
1610
1610
  font-weight: 400;
1611
1611
  }
1612
1612
 
1613
1613
  .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
1614
- font-family: 'R Icons';
1614
+ font-family: $fa-style-family;
1615
1615
  font-weight: 400;
1616
1616
  }
1617
1617
  .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before {
@@ -1619,47 +1619,47 @@
1619
1619
  }
1620
1620
 
1621
1621
  .#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
1622
- font-family: 'R Icons';
1622
+ font-family: $fa-style-family;
1623
1623
  font-weight: 400;
1624
1624
  }
1625
1625
 
1626
1626
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
1627
- font-family: 'R Icons';
1627
+ font-family: $fa-style-family;
1628
1628
  font-weight: 400;
1629
1629
  }
1630
1630
 
1631
1631
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
1632
- font-family: 'R Icons';
1632
+ font-family: $fa-style-family;
1633
1633
  font-weight: 400;
1634
1634
  }
1635
1635
 
1636
1636
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
1637
- font-family: 'R Icons';
1637
+ font-family: $fa-style-family;
1638
1638
  font-weight: 400;
1639
1639
  }
1640
1640
 
1641
1641
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
1642
- font-family: 'R Icons';
1642
+ font-family: $fa-style-family;
1643
1643
  font-weight: 400;
1644
1644
  }
1645
1645
 
1646
1646
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
1647
- font-family: 'R Icons';
1647
+ font-family: $fa-style-family;
1648
1648
  font-weight: 400;
1649
1649
  }
1650
1650
 
1651
1651
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
1652
- font-family: 'R Icons';
1652
+ font-family: $fa-style-family;
1653
1653
  font-weight: 400;
1654
1654
  }
1655
1655
 
1656
1656
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
1657
- font-family: 'R Icons';
1657
+ font-family: $fa-style-family;
1658
1658
  font-weight: 400;
1659
1659
  }
1660
1660
 
1661
1661
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
1662
- font-family: 'R Icons';
1662
+ font-family: $fa-style-family;
1663
1663
  font-weight: 400;
1664
1664
  }
1665
1665
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before {
@@ -1671,7 +1671,7 @@
1671
1671
  }
1672
1672
 
1673
1673
  .#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
1674
- font-family: 'R Icons';
1674
+ font-family: $fa-style-family;
1675
1675
  font-weight: 400;
1676
1676
  }
1677
1677
 
@@ -1692,27 +1692,27 @@
1692
1692
  }
1693
1693
 
1694
1694
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
1695
- font-family: 'R Icons';
1695
+ font-family: $fa-style-family;
1696
1696
  font-weight: 400;
1697
1697
  }
1698
1698
 
1699
1699
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
1700
- font-family: 'R Icons';
1700
+ font-family: $fa-style-family;
1701
1701
  font-weight: 400;
1702
1702
  }
1703
1703
 
1704
1704
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
1705
- font-family: 'R Icons';
1705
+ font-family: $fa-style-family;
1706
1706
  font-weight: 400;
1707
1707
  }
1708
1708
 
1709
1709
  .#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
1710
- font-family: 'R Icons';
1710
+ font-family: $fa-style-family;
1711
1711
  font-weight: 400;
1712
1712
  }
1713
1713
 
1714
1714
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
1715
- font-family: 'R Icons';
1715
+ font-family: $fa-style-family;
1716
1716
  font-weight: 400;
1717
1717
  }
1718
1718
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before {
@@ -1732,52 +1732,52 @@
1732
1732
  }
1733
1733
 
1734
1734
  .#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
1735
- font-family: 'R Icons';
1735
+ font-family: $fa-style-family;
1736
1736
  font-weight: 400;
1737
1737
  }
1738
1738
 
1739
1739
  .#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
1740
- font-family: 'R Icons';
1740
+ font-family: $fa-style-family;
1741
1741
  font-weight: 400;
1742
1742
  }
1743
1743
 
1744
1744
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
1745
- font-family: 'R Icons';
1745
+ font-family: $fa-style-family;
1746
1746
  font-weight: 400;
1747
1747
  }
1748
1748
 
1749
1749
  .#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
1750
- font-family: 'R Icons';
1750
+ font-family: $fa-style-family;
1751
1751
  font-weight: 400;
1752
1752
  }
1753
1753
 
1754
1754
  .#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
1755
- font-family: 'R Icons';
1755
+ font-family: $fa-style-family;
1756
1756
  font-weight: 400;
1757
1757
  }
1758
1758
 
1759
1759
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
1760
- font-family: 'R Icons';
1760
+ font-family: $fa-style-family;
1761
1761
  font-weight: 400;
1762
1762
  }
1763
1763
 
1764
1764
  .#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
1765
- font-family: 'R Icons';
1765
+ font-family: $fa-style-family;
1766
1766
  font-weight: 400;
1767
1767
  }
1768
1768
 
1769
1769
  .#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
1770
- font-family: 'R Icons';
1770
+ font-family: $fa-style-family;
1771
1771
  font-weight: 400;
1772
1772
  }
1773
1773
 
1774
1774
  .#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
1775
- font-family: 'R Icons';
1775
+ font-family: $fa-style-family;
1776
1776
  font-weight: 400;
1777
1777
  }
1778
1778
 
1779
1779
  .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
1780
- font-family: 'R Icons';
1780
+ font-family: $fa-style-family;
1781
1781
  font-weight: 400;
1782
1782
  }
1783
1783
  .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before {
@@ -1797,7 +1797,7 @@
1797
1797
  }
1798
1798
 
1799
1799
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
1800
- font-family: 'R Icons';
1800
+ font-family: $fa-style-family;
1801
1801
  font-weight: 400;
1802
1802
  }
1803
1803
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before {
@@ -1805,12 +1805,12 @@
1805
1805
  }
1806
1806
 
1807
1807
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
1808
- font-family: 'R Icons';
1808
+ font-family: $fa-style-family;
1809
1809
  font-weight: 400;
1810
1810
  }
1811
1811
 
1812
1812
  .#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
1813
- font-family: 'R Icons';
1813
+ font-family: $fa-style-family;
1814
1814
  font-weight: 400;
1815
1815
  }
1816
1816
 
@@ -1819,22 +1819,22 @@
1819
1819
  }
1820
1820
 
1821
1821
  .#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
1822
- font-family: 'R Icons';
1822
+ font-family: $fa-style-family;
1823
1823
  font-weight: 400;
1824
1824
  }
1825
1825
 
1826
1826
  .#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
1827
- font-family: 'R Icons';
1827
+ font-family: $fa-style-family;
1828
1828
  font-weight: 400;
1829
1829
  }
1830
1830
 
1831
1831
  .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
1832
- font-family: 'R Icons';
1832
+ font-family: $fa-style-family;
1833
1833
  font-weight: 400;
1834
1834
  }
1835
1835
 
1836
1836
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
1837
- font-family: 'R Icons';
1837
+ font-family: $fa-style-family;
1838
1838
  font-weight: 400;
1839
1839
  }
1840
1840
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before {
@@ -1842,17 +1842,17 @@
1842
1842
  }
1843
1843
 
1844
1844
  .#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
1845
- font-family: 'R Icons';
1845
+ font-family: $fa-style-family;
1846
1846
  font-weight: 400;
1847
1847
  }
1848
1848
 
1849
1849
  .#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
1850
- font-family: 'R Icons';
1850
+ font-family: $fa-style-family;
1851
1851
  font-weight: 400;
1852
1852
  }
1853
1853
 
1854
1854
  .#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
1855
- font-family: 'R Icons';
1855
+ font-family: $fa-style-family;
1856
1856
  font-weight: 400;
1857
1857
  }
1858
1858
 
@@ -1881,17 +1881,17 @@
1881
1881
  }
1882
1882
 
1883
1883
  .#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
1884
- font-family: 'R Icons';
1884
+ font-family: $fa-style-family;
1885
1885
  font-weight: 400;
1886
1886
  }
1887
1887
 
1888
1888
  .#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
1889
- font-family: 'R Icons';
1889
+ font-family: $fa-style-family;
1890
1890
  font-weight: 400;
1891
1891
  }
1892
1892
 
1893
1893
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
1894
- font-family: 'R Icons';
1894
+ font-family: $fa-style-family;
1895
1895
  font-weight: 400;
1896
1896
  }
1897
1897
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before {
@@ -1899,17 +1899,17 @@
1899
1899
  }
1900
1900
 
1901
1901
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
1902
- font-family: 'R Icons';
1902
+ font-family: $fa-style-family;
1903
1903
  font-weight: 400;
1904
1904
  }
1905
1905
 
1906
1906
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
1907
- font-family: 'R Icons';
1907
+ font-family: $fa-style-family;
1908
1908
  font-weight: 400;
1909
1909
  }
1910
1910
 
1911
1911
  .#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
1912
- font-family: 'R Icons';
1912
+ font-family: $fa-style-family;
1913
1913
  font-weight: 400;
1914
1914
  }
1915
1915
 
@@ -1934,7 +1934,7 @@
1934
1934
  }
1935
1935
 
1936
1936
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
1937
- font-family: 'R Icons';
1937
+ font-family: $fa-style-family;
1938
1938
  font-weight: 400;
1939
1939
  }
1940
1940
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before {
@@ -1942,7 +1942,7 @@
1942
1942
  }
1943
1943
 
1944
1944
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
1945
- font-family: 'R Icons';
1945
+ font-family: $fa-style-family;
1946
1946
  font-weight: 400;
1947
1947
  }
1948
1948
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before {
@@ -1950,7 +1950,7 @@
1950
1950
  }
1951
1951
 
1952
1952
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
1953
- font-family: 'R Icons';
1953
+ font-family: $fa-style-family;
1954
1954
  font-weight: 400;
1955
1955
  }
1956
1956
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before {
@@ -1958,7 +1958,7 @@
1958
1958
  }
1959
1959
 
1960
1960
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
1961
- font-family: 'R Icons';
1961
+ font-family: $fa-style-family;
1962
1962
  font-weight: 400;
1963
1963
  }
1964
1964
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before {
@@ -1966,7 +1966,7 @@
1966
1966
  }
1967
1967
 
1968
1968
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
1969
- font-family: 'R Icons';
1969
+ font-family: $fa-style-family;
1970
1970
  font-weight: 400;
1971
1971
  }
1972
1972
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before {
@@ -1974,7 +1974,7 @@
1974
1974
  }
1975
1975
 
1976
1976
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
1977
- font-family: 'R Icons';
1977
+ font-family: $fa-style-family;
1978
1978
  font-weight: 400;
1979
1979
  }
1980
1980
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before {
@@ -1982,7 +1982,7 @@
1982
1982
  }
1983
1983
 
1984
1984
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
1985
- font-family: 'R Icons';
1985
+ font-family: $fa-style-family;
1986
1986
  font-weight: 400;
1987
1987
  }
1988
1988
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before {
@@ -1990,7 +1990,7 @@
1990
1990
  }
1991
1991
 
1992
1992
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
1993
- font-family: 'R Icons';
1993
+ font-family: $fa-style-family;
1994
1994
  font-weight: 400;
1995
1995
  }
1996
1996
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before {
@@ -1998,7 +1998,7 @@
1998
1998
  }
1999
1999
 
2000
2000
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
2001
- font-family: 'R Icons';
2001
+ font-family: $fa-style-family;
2002
2002
  font-weight: 400;
2003
2003
  }
2004
2004
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before {
@@ -2006,67 +2006,67 @@
2006
2006
  }
2007
2007
 
2008
2008
  .#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
2009
- font-family: 'R Icons';
2009
+ font-family: $fa-style-family;
2010
2010
  font-weight: 400;
2011
2011
  }
2012
2012
 
2013
2013
  .#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
2014
- font-family: 'R Icons';
2014
+ font-family: $fa-style-family;
2015
2015
  font-weight: 400;
2016
2016
  }
2017
2017
 
2018
2018
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
2019
- font-family: 'R Icons';
2019
+ font-family: $fa-style-family;
2020
2020
  font-weight: 400;
2021
2021
  }
2022
2022
 
2023
2023
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
2024
- font-family: 'R Icons';
2024
+ font-family: $fa-style-family;
2025
2025
  font-weight: 400;
2026
2026
  }
2027
2027
 
2028
2028
  .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
2029
- font-family: 'R Icons';
2029
+ font-family: $fa-style-family;
2030
2030
  font-weight: 400;
2031
2031
  }
2032
2032
 
2033
2033
  .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
2034
- font-family: 'R Icons';
2034
+ font-family: $fa-style-family;
2035
2035
  font-weight: 400;
2036
2036
  }
2037
2037
 
2038
2038
  .#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
2039
- font-family: 'R Icons';
2039
+ font-family: $fa-style-family;
2040
2040
  font-weight: 400;
2041
2041
  }
2042
2042
 
2043
2043
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
2044
- font-family: 'R Icons';
2044
+ font-family: $fa-style-family;
2045
2045
  font-weight: 400;
2046
2046
  }
2047
2047
 
2048
2048
  .#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
2049
- font-family: 'R Icons';
2049
+ font-family: $fa-style-family;
2050
2050
  font-weight: 400;
2051
2051
  }
2052
2052
 
2053
2053
  .#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
2054
- font-family: 'R Icons';
2054
+ font-family: $fa-style-family;
2055
2055
  font-weight: 400;
2056
2056
  }
2057
2057
 
2058
2058
  .#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
2059
- font-family: 'R Icons';
2059
+ font-family: $fa-style-family;
2060
2060
  font-weight: 400;
2061
2061
  }
2062
2062
 
2063
2063
  .#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
2064
- font-family: 'R Icons';
2064
+ font-family: $fa-style-family;
2065
2065
  font-weight: 400;
2066
2066
  }
2067
2067
 
2068
2068
  .#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
2069
- font-family: 'R Icons';
2069
+ font-family: $fa-style-family;
2070
2070
  font-weight: 400;
2071
2071
  }
2072
2072
 
@@ -2075,22 +2075,22 @@
2075
2075
  }
2076
2076
 
2077
2077
  .#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
2078
- font-family: 'R Icons';
2078
+ font-family: $fa-style-family;
2079
2079
  font-weight: 400;
2080
2080
  }
2081
2081
 
2082
2082
  .#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
2083
- font-family: 'R Icons';
2083
+ font-family: $fa-style-family;
2084
2084
  font-weight: 400;
2085
2085
  }
2086
2086
 
2087
2087
  .#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
2088
- font-family: 'R Icons';
2088
+ font-family: $fa-style-family;
2089
2089
  font-weight: 400;
2090
2090
  }
2091
2091
 
2092
2092
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
2093
- font-family: 'R Icons';
2093
+ font-family: $fa-style-family;
2094
2094
  font-weight: 400;
2095
2095
  }
2096
2096
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before {
@@ -2098,7 +2098,7 @@
2098
2098
  }
2099
2099
 
2100
2100
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
2101
- font-family: 'R Icons';
2101
+ font-family: $fa-style-family;
2102
2102
  font-weight: 400;
2103
2103
  }
2104
2104
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before {
@@ -2106,7 +2106,7 @@
2106
2106
  }
2107
2107
 
2108
2108
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
2109
- font-family: 'R Icons';
2109
+ font-family: $fa-style-family;
2110
2110
  font-weight: 400;
2111
2111
  }
2112
2112
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before {
@@ -2114,7 +2114,7 @@
2114
2114
  }
2115
2115
 
2116
2116
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
2117
- font-family: 'R Icons';
2117
+ font-family: $fa-style-family;
2118
2118
  font-weight: 400;
2119
2119
  }
2120
2120
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before {
@@ -2122,7 +2122,7 @@
2122
2122
  }
2123
2123
 
2124
2124
  .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
2125
- font-family: 'R Icons';
2125
+ font-family: $fa-style-family;
2126
2126
  font-weight: 400;
2127
2127
  }
2128
2128
  .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before {
@@ -2134,7 +2134,7 @@
2134
2134
  }
2135
2135
 
2136
2136
  .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
2137
- font-family: 'R Icons';
2137
+ font-family: $fa-style-family;
2138
2138
  font-weight: 400;
2139
2139
  }
2140
2140
  .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before {
@@ -2142,12 +2142,12 @@
2142
2142
  }
2143
2143
 
2144
2144
  .#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
2145
- font-family: 'R Icons';
2145
+ font-family: $fa-style-family;
2146
2146
  font-weight: 400;
2147
2147
  }
2148
2148
 
2149
2149
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
2150
- font-family: 'R Icons';
2150
+ font-family: $fa-style-family;
2151
2151
  font-weight: 400;
2152
2152
  }
2153
2153
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before {
@@ -2155,22 +2155,22 @@
2155
2155
  }
2156
2156
 
2157
2157
  .#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
2158
- font-family: 'R Icons';
2158
+ font-family: $fa-style-family;
2159
2159
  font-weight: 400;
2160
2160
  }
2161
2161
 
2162
2162
  .#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
2163
- font-family: 'R Icons';
2163
+ font-family: $fa-style-family;
2164
2164
  font-weight: 400;
2165
2165
  }
2166
2166
 
2167
2167
  .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
2168
- font-family: 'R Icons';
2168
+ font-family: $fa-style-family;
2169
2169
  font-weight: 400;
2170
2170
  }
2171
2171
 
2172
2172
  .#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
2173
- font-family: 'R Icons';
2173
+ font-family: $fa-style-family;
2174
2174
  font-weight: 400;
2175
2175
  }
2176
2176
 
@@ -2179,42 +2179,42 @@
2179
2179
  }
2180
2180
 
2181
2181
  .#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
2182
- font-family: 'R Icons';
2182
+ font-family: $fa-style-family;
2183
2183
  font-weight: 400;
2184
2184
  }
2185
2185
 
2186
2186
  .#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
2187
- font-family: 'R Icons';
2187
+ font-family: $fa-style-family;
2188
2188
  font-weight: 400;
2189
2189
  }
2190
2190
 
2191
2191
  .#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
2192
- font-family: 'R Icons';
2192
+ font-family: $fa-style-family;
2193
2193
  font-weight: 400;
2194
2194
  }
2195
2195
 
2196
2196
  .#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
2197
- font-family: 'R Icons';
2197
+ font-family: $fa-style-family;
2198
2198
  font-weight: 400;
2199
2199
  }
2200
2200
 
2201
2201
  .#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
2202
- font-family: 'R Icons';
2202
+ font-family: $fa-style-family;
2203
2203
  font-weight: 400;
2204
2204
  }
2205
2205
 
2206
2206
  .#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
2207
- font-family: 'R Icons';
2207
+ font-family: $fa-style-family;
2208
2208
  font-weight: 400;
2209
2209
  }
2210
2210
 
2211
2211
  .#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
2212
- font-family: 'R Icons';
2212
+ font-family: $fa-style-family;
2213
2213
  font-weight: 400;
2214
2214
  }
2215
2215
 
2216
2216
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
2217
- font-family: 'R Icons';
2217
+ font-family: $fa-style-family;
2218
2218
  font-weight: 400;
2219
2219
  }
2220
2220
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before {
@@ -2222,7 +2222,7 @@
2222
2222
  }
2223
2223
 
2224
2224
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
2225
- font-family: 'R Icons';
2225
+ font-family: $fa-style-family;
2226
2226
  font-weight: 400;
2227
2227
  }
2228
2228
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before {
@@ -2230,37 +2230,37 @@
2230
2230
  }
2231
2231
 
2232
2232
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
2233
- font-family: 'R Icons';
2233
+ font-family: $fa-style-family;
2234
2234
  font-weight: 400;
2235
2235
  }
2236
2236
 
2237
2237
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
2238
- font-family: 'R Icons';
2238
+ font-family: $fa-style-family;
2239
2239
  font-weight: 400;
2240
2240
  }
2241
2241
 
2242
2242
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
2243
- font-family: 'R Icons';
2243
+ font-family: $fa-style-family;
2244
2244
  font-weight: 400;
2245
2245
  }
2246
2246
 
2247
2247
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
2248
- font-family: 'R Icons';
2248
+ font-family: $fa-style-family;
2249
2249
  font-weight: 400;
2250
2250
  }
2251
2251
 
2252
2252
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
2253
- font-family: 'R Icons';
2253
+ font-family: $fa-style-family;
2254
2254
  font-weight: 400;
2255
2255
  }
2256
2256
 
2257
2257
  .#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
2258
- font-family: 'R Icons';
2258
+ font-family: $fa-style-family;
2259
2259
  font-weight: 400;
2260
2260
  }
2261
2261
 
2262
2262
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
2263
- font-family: 'R Icons';
2263
+ font-family: $fa-style-family;
2264
2264
  font-weight: 400;
2265
2265
  }
2266
2266
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before {
@@ -2268,7 +2268,7 @@
2268
2268
  }
2269
2269
 
2270
2270
  .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
2271
- font-family: 'R Icons';
2271
+ font-family: $fa-style-family;
2272
2272
  font-weight: 400;
2273
2273
  }
2274
2274
  .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before {
@@ -2292,12 +2292,12 @@
2292
2292
  }
2293
2293
 
2294
2294
  .#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
2295
- font-family: 'R Icons';
2295
+ font-family: $fa-style-family;
2296
2296
  font-weight: 400;
2297
2297
  }
2298
2298
 
2299
2299
  .#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
2300
- font-family: 'R Icons';
2300
+ font-family: $fa-style-family;
2301
2301
  font-weight: 400;
2302
2302
  }
2303
2303
 
@@ -2306,22 +2306,22 @@
2306
2306
  }
2307
2307
 
2308
2308
  .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
2309
- font-family: 'R Icons';
2309
+ font-family: $fa-style-family;
2310
2310
  font-weight: 400;
2311
2311
  }
2312
2312
 
2313
2313
  .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
2314
- font-family: 'R Icons';
2314
+ font-family: $fa-style-family;
2315
2315
  font-weight: 400;
2316
2316
  }
2317
2317
 
2318
2318
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
2319
- font-family: 'R Icons';
2319
+ font-family: $fa-style-family;
2320
2320
  font-weight: 400;
2321
2321
  }
2322
2322
 
2323
2323
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
2324
- font-family: 'R Icons';
2324
+ font-family: $fa-style-family;
2325
2325
  font-weight: 400;
2326
2326
  }
2327
2327
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost:before {
@@ -2329,32 +2329,32 @@
2329
2329
  }
2330
2330
 
2331
2331
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
2332
- font-family: 'R Icons';
2332
+ font-family: $fa-style-family;
2333
2333
  font-weight: 400;
2334
2334
  }
2335
2335
 
2336
2336
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
2337
- font-family: 'R Icons';
2337
+ font-family: $fa-style-family;
2338
2338
  font-weight: 400;
2339
2339
  }
2340
2340
 
2341
2341
  .#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
2342
- font-family: 'R Icons';
2342
+ font-family: $fa-style-family;
2343
2343
  font-weight: 400;
2344
2344
  }
2345
2345
 
2346
2346
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
2347
- font-family: 'R Icons';
2347
+ font-family: $fa-style-family;
2348
2348
  font-weight: 400;
2349
2349
  }
2350
2350
 
2351
2351
  .#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
2352
- font-family: 'R Icons';
2352
+ font-family: $fa-style-family;
2353
2353
  font-weight: 400;
2354
2354
  }
2355
2355
 
2356
2356
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
2357
- font-family: 'R Icons';
2357
+ font-family: $fa-style-family;
2358
2358
  font-weight: 400;
2359
2359
  }
2360
2360
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before {
@@ -2362,7 +2362,7 @@
2362
2362
  }
2363
2363
 
2364
2364
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
2365
- font-family: 'R Icons';
2365
+ font-family: $fa-style-family;
2366
2366
  font-weight: 400;
2367
2367
  }
2368
2368
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before {
@@ -2370,12 +2370,12 @@
2370
2370
  }
2371
2371
 
2372
2372
  .#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
2373
- font-family: 'R Icons';
2373
+ font-family: $fa-style-family;
2374
2374
  font-weight: 400;
2375
2375
  }
2376
2376
 
2377
2377
  .#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
2378
- font-family: 'R Icons';
2378
+ font-family: $fa-style-family;
2379
2379
  font-weight: 400;
2380
2380
  }
2381
2381
  .#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before {
@@ -2383,7 +2383,7 @@
2383
2383
  }
2384
2384
 
2385
2385
  .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
2386
- font-family: 'R Icons';
2386
+ font-family: $fa-style-family;
2387
2387
  font-weight: 400;
2388
2388
  }
2389
2389
  .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before {
@@ -2391,7 +2391,7 @@
2391
2391
  }
2392
2392
 
2393
2393
  .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
2394
- font-family: 'R Icons';
2394
+ font-family: $fa-style-family;
2395
2395
  font-weight: 400;
2396
2396
  }
2397
2397
  .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before {
@@ -2399,12 +2399,12 @@
2399
2399
  }
2400
2400
 
2401
2401
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
2402
- font-family: 'R Icons';
2402
+ font-family: $fa-style-family;
2403
2403
  font-weight: 400;
2404
2404
  }
2405
2405
 
2406
2406
  .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
2407
- font-family: 'R Icons';
2407
+ font-family: $fa-style-family;
2408
2408
  font-weight: 400;
2409
2409
  }
2410
2410
  .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before {
@@ -2416,7 +2416,7 @@
2416
2416
  }
2417
2417
 
2418
2418
  .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
2419
- font-family: 'R Icons';
2419
+ font-family: $fa-style-family;
2420
2420
  font-weight: 400;
2421
2421
  }
2422
2422
  .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before {
@@ -2424,7 +2424,7 @@
2424
2424
  }
2425
2425
 
2426
2426
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
2427
- font-family: 'R Icons';
2427
+ font-family: $fa-style-family;
2428
2428
  font-weight: 400;
2429
2429
  }
2430
2430
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before {
@@ -2432,7 +2432,7 @@
2432
2432
  }
2433
2433
 
2434
2434
  .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
2435
- font-family: 'R Icons';
2435
+ font-family: $fa-style-family;
2436
2436
  font-weight: 400;
2437
2437
  }
2438
2438
  .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before {
@@ -2440,7 +2440,7 @@
2440
2440
  }
2441
2441
 
2442
2442
  .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
2443
- font-family: 'R Icons';
2443
+ font-family: $fa-style-family;
2444
2444
  font-weight: 400;
2445
2445
  }
2446
2446
  .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before {
@@ -2448,7 +2448,7 @@
2448
2448
  }
2449
2449
 
2450
2450
  .#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
2451
- font-family: 'R Icons';
2451
+ font-family: $fa-style-family;
2452
2452
  font-weight: 400;
2453
2453
  }
2454
2454
 
@@ -2457,7 +2457,7 @@
2457
2457
  }
2458
2458
 
2459
2459
  .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
2460
- font-family: 'R Icons';
2460
+ font-family: $fa-style-family;
2461
2461
  font-weight: 400;
2462
2462
  }
2463
2463
  .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before {
@@ -2465,7 +2465,7 @@
2465
2465
  }
2466
2466
 
2467
2467
  .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
2468
- font-family: 'R Icons';
2468
+ font-family: $fa-style-family;
2469
2469
  font-weight: 400;
2470
2470
  }
2471
2471
  .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before {
@@ -2473,17 +2473,17 @@
2473
2473
  }
2474
2474
 
2475
2475
  .#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
2476
- font-family: 'R Icons';
2476
+ font-family: $fa-style-family;
2477
2477
  font-weight: 400;
2478
2478
  }
2479
2479
 
2480
2480
  .#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
2481
- font-family: 'R Icons';
2481
+ font-family: $fa-style-family;
2482
2482
  font-weight: 400;
2483
2483
  }
2484
2484
 
2485
2485
  .#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
2486
- font-family: 'R Icons';
2486
+ font-family: $fa-style-family;
2487
2487
  font-weight: 400;
2488
2488
  }
2489
2489
 
@@ -2520,12 +2520,12 @@
2520
2520
  }
2521
2521
 
2522
2522
  .#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
2523
- font-family: 'R Icons';
2523
+ font-family: $fa-style-family;
2524
2524
  font-weight: 400;
2525
2525
  }
2526
2526
 
2527
2527
  .#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
2528
- font-family: 'R Icons';
2528
+ font-family: $fa-style-family;
2529
2529
  font-weight: 400;
2530
2530
  }
2531
2531
 
@@ -2534,7 +2534,7 @@
2534
2534
  }
2535
2535
 
2536
2536
  .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
2537
- font-family: 'R Icons';
2537
+ font-family: $fa-style-family;
2538
2538
  font-weight: 400;
2539
2539
  }
2540
2540
  .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before {
@@ -2542,7 +2542,7 @@
2542
2542
  }
2543
2543
 
2544
2544
  .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
2545
- font-family: 'R Icons';
2545
+ font-family: $fa-style-family;
2546
2546
  font-weight: 400;
2547
2547
  }
2548
2548
  .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before {
@@ -2550,32 +2550,32 @@
2550
2550
  }
2551
2551
 
2552
2552
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
2553
- font-family: 'R Icons';
2553
+ font-family: $fa-style-family;
2554
2554
  font-weight: 400;
2555
2555
  }
2556
2556
 
2557
2557
  .#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
2558
- font-family: 'R Icons';
2558
+ font-family: $fa-style-family;
2559
2559
  font-weight: 400;
2560
2560
  }
2561
2561
 
2562
2562
  .#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
2563
- font-family: 'R Icons';
2563
+ font-family: $fa-style-family;
2564
2564
  font-weight: 400;
2565
2565
  }
2566
2566
 
2567
2567
  .#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
2568
- font-family: 'R Icons';
2568
+ font-family: $fa-style-family;
2569
2569
  font-weight: 400;
2570
2570
  }
2571
2571
 
2572
2572
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
2573
- font-family: 'R Icons';
2573
+ font-family: $fa-style-family;
2574
2574
  font-weight: 400;
2575
2575
  }
2576
2576
 
2577
2577
  .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
2578
- font-family: 'R Icons';
2578
+ font-family: $fa-style-family;
2579
2579
  font-weight: 400;
2580
2580
  }
2581
2581
  .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before {
@@ -2583,7 +2583,7 @@
2583
2583
  }
2584
2584
 
2585
2585
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
2586
- font-family: 'R Icons';
2586
+ font-family: $fa-style-family;
2587
2587
  font-weight: 400;
2588
2588
  }
2589
2589
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before {
@@ -2591,16 +2591,16 @@
2591
2591
  }
2592
2592
 
2593
2593
  .#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
2594
- font-family: 'R Icons';
2594
+ font-family: $fa-style-family;
2595
2595
  font-weight: 400;
2596
2596
  }
2597
2597
 
2598
2598
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
2599
- font-family: 'R Icons';
2599
+ font-family: $fa-style-family;
2600
2600
  font-weight: 400;
2601
2601
  }
2602
2602
 
2603
2603
  .#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
2604
- font-family: 'R Icons';
2604
+ font-family: $fa-style-family;
2605
2605
  font-weight: 400;
2606
2606
  }