61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
type LineHeightDecreaseIconProps = {
|
|
strokeColor: string
|
|
}
|
|
|
|
export function LineHeightDecreaseIcon(
|
|
props: LineHeightDecreaseIconProps
|
|
): JSX.Element {
|
|
return (
|
|
<svg
|
|
width="23"
|
|
height="14"
|
|
viewBox="0 0 23 14"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M10.2728 4.04077L21.8195 4.04077"
|
|
stroke="#969696"
|
|
strokeWidth="1.4"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M10.2728 6.92456L21.8195 6.92456"
|
|
stroke="#969696"
|
|
strokeWidth="1.4"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M10.2728 9.80811L21.8195 9.80811"
|
|
stroke="#969696"
|
|
strokeWidth="1.4"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M5.20044 2.69069L3.27599 1.15112L1.35153 2.69069"
|
|
stroke="#969696"
|
|
strokeWidth="1.4"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M5.20044 11.1582L3.27599 12.6978L1.35153 11.1582"
|
|
stroke="#969696"
|
|
strokeWidth="1.4"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M3.276 1.15112L3.276 12.6978"
|
|
stroke="#969696"
|
|
strokeWidth="1.4"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|