- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
10 lines
379 B
JavaScript
10 lines
379 B
JavaScript
import { createIcon } from '@chakra-ui/react';
|
|
|
|
const DownloadIcon = createIcon({
|
|
d: "M11.2857,6.05714 L10.08571,4.85714 L7.85714,7.14786 L7.85714,1 L6.14286,1 L6.14286,7.14786 L3.91429,4.85714 L2.71429,6.05714 L7,10.42857 L11.2857,6.05714 Z M1,11.2857 L1,13 L13,13 L13,11.2857 L1,11.2857 Z",
|
|
displayName: "DownloadIcon",
|
|
viewBox: "0 0 14 14"
|
|
});
|
|
|
|
export { DownloadIcon };
|