You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
826 B
13 lines
826 B
import React from 'react'; |
|
import Svg, { Path } from 'react-native-svg'; |
|
|
|
const TiktokIcon = ({color,size}:{color:string,size:number}) => ( |
|
<Svg width={size} height={size} viewBox="0 0 22 22" fill="none"> |
|
<Path |
|
d="M17.4167 9.53425C16.0839 9.53425 14.7492 9.11533 13.6676 8.27842V13.9737C13.6676 16.8208 11.4997 19.25 8.66625 19.25C5.83283 19.25 3.66675 16.9052 3.66675 13.9737C3.66675 11.0422 5.83375 8.69642 8.66716 8.69642C8.9165 8.69642 9.25016 8.69642 9.50041 8.78075V11.7957C9.25016 11.7122 8.99991 11.6279 8.66625 11.6279C7.41683 11.6279 6.50016 12.7169 6.50016 13.8893C6.50016 15.2295 7.49933 16.1508 8.66716 16.1508C9.83316 16.1508 10.8332 15.0618 10.8332 13.8893V2.75H13.5832C13.5832 4.928 15.2497 6.68617 17.2499 6.68617L17.4167 9.53425Z" |
|
fill={color} |
|
/> |
|
</Svg> |
|
); |
|
|
|
export default TiktokIcon; |