@@ -175,39 +175,6 @@ export const GpuZIcon = ({ size = 24, ...props }) => (
175175 </ svg >
176176) ;
177177
178- // CCleaner - Broom with official orange/red CCleaner colors
179- export const CCleanerIcon = ( { size = 24 , ...props } ) => (
180- < svg
181- width = { size }
182- height = { size }
183- viewBox = "0 0 24 24"
184- xmlns = "http://www.w3.org/2000/svg"
185- style = { { flexShrink : 0 } }
186- { ...props }
187- >
188- < defs >
189- < linearGradient id = "ccleaner-grad" x1 = "0%" y1 = "0%" x2 = "0%" y2 = "100%" >
190- < stop offset = "0%" stopColor = "#FF6B1A" />
191- < stop offset = "50%" stopColor = "#E85500" />
192- < stop offset = "100%" stopColor = "#CC4D00" />
193- </ linearGradient >
194- </ defs >
195- { /* Broom handle */ }
196- < rect x = "10.5" y = "2" width = "3" height = "12" rx = "1.5" fill = "#8B4513" />
197- { /* Broom bristles */ }
198- < path d = "M7 14h10l1 2v6l-1 0H7l-1 0v-6z" fill = "url(#ccleaner-grad)" />
199- { /* Bristle details */ }
200- < line x1 = "8" y1 = "16" x2 = "8" y2 = "22" stroke = "#CC4D00" strokeWidth = "0.5" />
201- < line x1 = "10" y1 = "16" x2 = "10" y2 = "22" stroke = "#CC4D00" strokeWidth = "0.5" />
202- < line x1 = "12" y1 = "16" x2 = "12" y2 = "22" stroke = "#CC4D00" strokeWidth = "0.5" />
203- < line x1 = "14" y1 = "16" x2 = "14" y2 = "22" stroke = "#CC4D00" strokeWidth = "0.5" />
204- < line x1 = "16" y1 = "16" x2 = "16" y2 = "22" stroke = "#CC4D00" strokeWidth = "0.5" />
205- { /* Handle grip */ }
206- < rect x = "10.5" y = "5" width = "3" height = "1" fill = "#6B3410" opacity = "0.5" />
207- < rect x = "10.5" y = "8" width = "3" height = "1" fill = "#6B3410" opacity = "0.5" />
208- </ svg >
209- ) ;
210-
211178// BleachBit - Spray bottle for cleaning/bleaching data
212179export const BleachBitIcon = ( { size = 24 , ...props } ) => (
213180 < svg
@@ -241,27 +208,6 @@ export const BleachBitIcon = ({ size = 24, ...props }) => (
241208 </ svg >
242209) ;
243210
244- // Driver Booster - Update/boost icon
245- export const DriverBoosterIcon = ( { size = 24 , ...props } ) => (
246- < svg
247- width = { size }
248- height = { size }
249- viewBox = "0 0 24 24"
250- xmlns = "http://www.w3.org/2000/svg"
251- style = { { flexShrink : 0 } }
252- { ...props }
253- >
254- < defs >
255- < linearGradient id = "driver-grad" x1 = "0%" y1 = "0%" x2 = "0%" y2 = "100%" >
256- < stop offset = "0%" stopColor = "#00D4FF" />
257- < stop offset = "100%" stopColor = "#0084FF" />
258- </ linearGradient >
259- </ defs >
260- < path d = "M12 2L4 12h5v8h6v-8h5L12 2z" fill = "url(#driver-grad)" />
261- < circle cx = "12" cy = "21" r = "1.5" fill = "#00D4FF" />
262- </ svg >
263- ) ;
264-
265211// Revo Uninstaller - Uninstall/trash icon
266212export const RevoUninstallerIcon = ( { size = 24 , ...props } ) => (
267213 < svg
@@ -340,36 +286,6 @@ export const EMuleIcon = ({ size = 24, ...props }) => (
340286 </ svg >
341287) ;
342288
343- // Nero - Burning disc with flames (Nero Burning ROM)
344- export const NeroIcon = ( { size = 24 , ...props } ) => (
345- < svg
346- width = { size }
347- height = { size }
348- viewBox = "0 0 24 24"
349- xmlns = "http://www.w3.org/2000/svg"
350- style = { { flexShrink : 0 } }
351- { ...props }
352- >
353- < defs >
354- < linearGradient id = "nero-grad" x1 = "0%" y1 = "0%" x2 = "0%" y2 = "100%" >
355- < stop offset = "0%" stopColor = "#FF4444" />
356- < stop offset = "100%" stopColor = "#CC0000" />
357- </ linearGradient >
358- < radialGradient id = "nero-disc" >
359- < stop offset = "0%" stopColor = "#666" />
360- < stop offset = "100%" stopColor = "#333" />
361- </ radialGradient >
362- </ defs >
363- { /* CD/DVD disc */ }
364- < circle cx = "12" cy = "14" r = "7" fill = "url(#nero-disc)" />
365- < circle cx = "12" cy = "14" r = "2" fill = "#111" />
366- { /* Flames */ }
367- < path d = "M10 7c0-2 1-4 2-5 1 1 2 3 2 5 0 1-.5 2-1 2.5-.5-.5-1-1.5-1-2.5z" fill = "url(#nero-grad)" />
368- < path d = "M7 9c-.5-1.5 0-3 .5-4 1 .5 1.5 2 2 3.5 0 .8-.5 1.3-1 1.5-.5-.3-.8-1-.5-1.5z" fill = "#FF6600" />
369- < path d = "M15 9c.5-1.5 0-3-.5-4-1 .5-1.5 2-2 3.5 0 .8.5 1.3 1 1.5.5-.3.8-1 .5-1.5z" fill = "#FF6600" />
370- </ svg >
371- ) ;
372-
373289// PowerISO - Power/lightning with ISO disc
374290export const PowerISOIcon = ( { size = 24 , ...props } ) => (
375291 < svg
@@ -496,13 +412,10 @@ export default {
496412 WinRarIcon,
497413 CpuZIcon,
498414 GpuZIcon,
499- CCleanerIcon,
500415 BleachBitIcon,
501- DriverBoosterIcon,
502416 RevoUninstallerIcon,
503417 WinampIcon,
504418 EMuleIcon,
505- NeroIcon,
506419 PowerISOIcon,
507420 UltraISOIcon,
508421 DirectXIcon,
0 commit comments