//
|
// IconLand.swift
|
// LiveProject
|
//
|
// Created by 倪路朋 on 6/25/25.
|
//
|
|
|
import SwiftUI
|
|
struct IconLandscape: View {
|
var color: Color = .white
|
var size: CGSize = CGSize(width: 20, height:15)
|
var lineWidth: CGFloat = 2.0
|
|
var body: some View {
|
IconRect()
|
.stroke(color, lineWidth: lineWidth)
|
.frame(width: size.width, height: size.height)
|
}
|
}
|
|
struct IconLandscape_Previews : PreviewProvider{
|
static var previews: some View {
|
IconLandscape(color: .black,size: CGSize(width: 90, height: 60))
|
}
|
}
|