File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { colours } from "@times-components/styleguide";
3
3
import Svg , { Path } from "svgs" ;
4
4
import iconPropTypes from "./proptypes" ;
5
5
6
- const ratio = 750 / 600 ;
6
+ const ratio = 75 / 60 ;
7
7
const IconTwitter = ( { width, height, fillColour } ) => (
8
8
< Svg
9
9
width = { width || height * ratio }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import iconPropTypes from "./proptypes";
6
6
const viewBox =
7
7
"0.15463916957378387 0.049614034593105316 23.59917640686035 13.728596687316895" ;
8
8
9
- const ratio = 1.72 ;
9
+ const ratio = 43 / 25 ;
10
10
const IconVideo = ( { width, height, fillColour } ) => (
11
11
< Svg width = { width || height * ratio } height = { height } viewBox = { viewBox } >
12
12
< Rect
Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ const VideoLabel = ({ title, color }) => (
10
10
< Text style = { [ styles . title , { color, marginLeft : 5 } ] } > VIDEO</ Text >
11
11
{ title ? < Text style = { [ styles . title , { marginLeft : 5 } ] } > |</ Text > : null }
12
12
{ title ? (
13
- < Text style = { [ styles . title , { color, paddingLeft : 5 } ] } > { title . toUpperCase ( ) } </ Text >
13
+ < Text style = { [ styles . title , { color, paddingLeft : 5 } ] } >
14
+ { title . toUpperCase ( ) }
15
+ </ Text >
14
16
) : null }
15
17
</ View >
16
18
) ;
You can’t perform that action at this time.
0 commit comments