working on car card & car view BS
This commit is contained in:
35
src/components/Icons/CarIcon.tsx
Normal file
35
src/components/Icons/CarIcon.tsx
Normal file
File diff suppressed because one or more lines are too long
@@ -1,15 +1,15 @@
|
||||
interface PlusIconType {
|
||||
className?: string;
|
||||
onClick?: () => void;
|
||||
dimesion?: string
|
||||
dimension?: string
|
||||
color?: string
|
||||
}
|
||||
|
||||
const PlusIcon = ({ className, onClick, dimesion, color }: PlusIconType) => {
|
||||
const PlusIcon = ({ className, onClick, dimension, color }: PlusIconType) => {
|
||||
return (
|
||||
<svg
|
||||
width={dimesion || "16"}
|
||||
height={dimesion || "16"}
|
||||
width={dimension || "16"}
|
||||
height={dimension || "16"}
|
||||
viewBox="0 0 16 16"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
|
||||
Reference in New Issue
Block a user