UNPKG

@kiwicom/orbit-components

Version:

<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"

21 lines (19 loc) 1.09 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./BaggagePersonalItem.js.flow"; export default function BaggagePersonalItem(props: Props) { const { color, size, customColor, className, dataTest } = props; return ( <OrbitIcon viewBox="0 0 24 24" size={size} color={color} customColor={customColor} className={className} dataTest={dataTest} > <path d="M12 4C9.76 4 8 5.76 8 8h1.6c0-1.36 1.04-2.4 2.4-2.4 1.36 0 2.4 1.04 2.4 2.4H16c0-2.24-1.76-4-4-4zM5.6 8.8l-.725 4.475c.081.24.331.484.65.725.24.16.556.319.875.4.16.081.31.15.55.15 1.44.4 3.206.575 4.325.575 0 .481.319.8.8.8.481 0 .8-.319.8-.8 1.119 0 3.034-.169 4.475-.65.16 0 .244-.069.325-.15.4-.16.731-.334 1.05-.575.16-.16.319-.31.4-.55L18.4 8.8H5.6zm1.275 1.6H17.05l.3 2.4c-.64.319-2.469.8-5.35.8s-4.731-.481-5.45-.8l.325-2.4zm12.4 4.25c-.319.24-.725.39-1.125.55-.16.081-.24.069-.4.15l.325 2.25H5.925l.325-2.15c-.24-.081-.41-.169-.65-.25-.319-.16-.631-.234-.95-.475L4 19.2h16l-.725-4.55z" /> </OrbitIcon> ); }