IconTwitterX.tsx16 lines · main
1// @ts-ignore
2import IconBase from '../../IconBase'
3
4// Import icon path from svg with size of 18x18px
5const src = (
6 <path
7 fill="currentColor"
8 d="M12.6009 0.903908H15.0544L9.69434 7.03008L16 15.3664H11.0627L7.19566 10.3105L2.77087 15.3664H0.31595L6.04904 8.81379L0 0.903908H5.06262L8.55811 5.52524L12.6009 0.903908ZM11.7399 13.8979H13.0993L4.32392 2.29528H2.86506L11.7399 13.8979Z"
9 />
10)
11
12function IconTwitterX(props: any) {
13 return <IconBase src={src} stroke="none" {...props} />
14}
15
16export default IconTwitterX