blob: 65c4d654eaf633b66221af063a8bed8d6a46c29b (
plain)
1
2
3
4
5
|
import * as React from "react";
const IconChevronDown = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-chevron-down" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><polyline points="6 9 12 15 18 9" /></svg>;
export default IconChevronDown;
|