diff options
| author | bobzel <zzzman@gmail.com> | 2023-08-26 13:30:21 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-08-26 13:30:21 -0400 |
| commit | 3960e2ed80317a14edaafeaeac07c9eeb405f513 (patch) | |
| tree | 9aefcd7e04b76866dbc58ce2350968b0cd652a15 /src/client/views/nodes/FontIconBox/TrailsIcon.tsx | |
| parent | 2064d04a2bb43dee4727856f7aac973080212e04 (diff) | |
fixed color of trails icon
Diffstat (limited to 'src/client/views/nodes/FontIconBox/TrailsIcon.tsx')
| -rw-r--r-- | src/client/views/nodes/FontIconBox/TrailsIcon.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/client/views/nodes/FontIconBox/TrailsIcon.tsx b/src/client/views/nodes/FontIconBox/TrailsIcon.tsx index 99063b4a0..09fd6e3ae 100644 --- a/src/client/views/nodes/FontIconBox/TrailsIcon.tsx +++ b/src/client/views/nodes/FontIconBox/TrailsIcon.tsx @@ -1,10 +1,8 @@ import * as React from 'react'; -import { StrCast } from '../../../../fields/Types'; -import { Doc } from '../../../../fields/Doc'; -const TrailsIcon = () => ( +const TrailsIcon = (fill: string) => ( <svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 1080.000000 1080.000000" preserveAspectRatio="xMidYMid meet"> - <g transform="translate(0.000000,1080.000000) scale(0.100000,-0.100000)" fill={StrCast(Doc.UserDoc().userColor)} stroke="none"> + <g transform="translate(0.000000,1080.000000) scale(0.100000,-0.100000)" fill={fill} stroke="none"> <path d="M665 9253 c-74 -10 -157 -38 -240 -81 -74 -37 -107 -63 -186 -141 -104 -104 -156 -191 -201 -334 l-23 -72 0 -3215 c0 -3072 1 -3218 18 -3280 10 |
