UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

9 lines 614 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; export default function ResizeHandleIcon({ className }) { return (React.createElement("svg", { focusable: false, className: className, xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 16 16", "aria-hidden": true }, React.createElement("line", { strokeWidth: "2", x1: "2", y1: "5", x2: "14", y2: "5" }), React.createElement("line", { strokeWidth: "2", x1: "14", y1: "10", x2: "2", y2: "10" }))); } //# sourceMappingURL=icon.js.map